From e0035df48ffb9a95aa94e8339c58ef539e0449cf Mon Sep 17 00:00:00 2001 From: ishtob Date: Mon, 27 Aug 2018 12:09:38 -0400 Subject: [PATCH] fixed issue where compile errors if private macro file is not present --- users/ishtob/rules.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/ishtob/rules.mk b/users/ishtob/rules.mk index d19e952667..909502b50a 100755 --- a/users/ishtob/rules.mk +++ b/users/ishtob/rules.mk @@ -1,5 +1,5 @@ SRC += ishtob.c -ifneq ($(wildcard $(USER_PATH)/macros_private.c),"") +ifneq ("$(wildcard $(USER_PATH)/macros_private.c)","") SRC += macros_private.c endif ifeq ($(strip $(NO_SECRETS)), yes)