1
0

2 Коммиты 511f1ed9de ... debba50c33

Автор SHA1 Сообщение Дата
  QMK Bot debba50c33 Merge remote-tracking branch 'origin/master' into develop 18 часов назад
  psych3r 08e5fcfdf4 Fix USER_PATH resolution on case-insensitive filesystems (#25853) 18 часов назад
1 измененных файлов с 4 добавлено и 2 удалено
  1. 4 2
      builddefs/build_keyboard.mk

+ 4 - 2
builddefs/build_keyboard.mk

@@ -474,8 +474,10 @@ ifneq ($(wildcard $(QMK_USERSPACE)),)
 endif
 
 # If the equivalent users directory exists in userspace, use that in preference to anything currently in the main repo
-ifneq ($(wildcard $(QMK_USERSPACE)/$(USER_PATH)),)
-    USER_PATH := $(QMK_USERSPACE)/$(USER_PATH)
+ifneq ($(QMK_USERSPACE),)
+	ifneq ($(wildcard $(QMK_USERSPACE)/$(USER_PATH)),)
+    	USER_PATH := $(QMK_USERSPACE)/$(USER_PATH)
+	endif
 endif
 
 # Pull in user level rules.mk