3 커밋 15952e92ca ... 192cf4cef6

작성자 SHA1 메시지 날짜
  QMK Bot 192cf4cef6 Merge remote-tracking branch 'origin/develop' into xap 15 시간 전
  QMK Bot debba50c33 Merge remote-tracking branch 'origin/master' into develop 15 시간 전
  psych3r 08e5fcfdf4 Fix USER_PATH resolution on case-insensitive filesystems (#25853) 15 시간 전
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