File tree 1 file changed +11
-8
lines changed
1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -70,16 +70,19 @@ function_files := \
70
70
# this is needed for _init.sh (BASE) to know it needs
71
71
# to be rebuilt on this event.
72
72
73
- ifneq ($(wildcard $(CACHE_DIR ) /got_func) ,)
74
- ifneq ($(wildcard $(FUNCS_DIR ) /* ) ,)
75
- ifneq ($(file < $(CACHE_DIR ) /got_func) , 1)
76
- $(shell echo 1 > $(CACHE_DIR)/got_func)
73
+ ifeq ($(wildcard $(CACHE_DIR ) /got_func) ,)
74
+ $(shell mkdir -p $(CACHE_DIR)/options)
75
+ $(shell echo 0 > $(CACHE_DIR)/got_func)
77
76
endif
77
+
78
+ ifneq ($(wildcard $(FUNCS_DIR ) /* ) ,)
79
+ ifneq ($(file < $(CACHE_DIR)/got_func), 1)
80
+ $(shell echo 1 > $(CACHE_DIR)/got_func)
81
+ endif
78
82
else
79
- ifneq ($(file < $(CACHE_DIR ) /got_func) , 0)
80
- $(shell echo 0 > $(CACHE_DIR)/got_func)
81
- endif
82
- endif
83
+ ifneq ($(file < $(CACHE_DIR)/got_func), 0)
84
+ $(shell echo 0 > $(CACHE_DIR)/got_func)
85
+ endif
83
86
endif
84
87
85
88
clean :
You can’t perform that action at this time.
0 commit comments