Browse Source

fixed issue where compile errors if private macro file is not present

pull/3777/head
ishtob 5 years ago
parent
commit
e0035df48f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      users/ishtob/rules.mk

+ 1
- 1
users/ishtob/rules.mk View File

@ -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)


Loading…
Cancel
Save