3 Commits 15952e92ca ... 192cf4cef6

Autor SHA1 Mensaje Fecha
  QMK Bot 192cf4cef6 Merge remote-tracking branch 'origin/develop' into xap hace 15 horas
  QMK Bot debba50c33 Merge remote-tracking branch 'origin/master' into develop hace 15 horas
  psych3r 08e5fcfdf4 Fix USER_PATH resolution on case-insensitive filesystems (#25853) hace 15 horas
Se han modificado 1 ficheros con 4 adiciones y 2 borrados
  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