File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -445,7 +445,6 @@ persist-settings:
445445.make-compile-prerequisites :
446446 @if [ ! -f $@ ]; then \
447447 echo " Building compile dependencies for first time..." ; \
448- touch $@ ; \
449448 echo STD=$(STD ) > .make-settings; \
450449 echo WARN=$(WARN ) >> .make-settings; \
451450 echo OPT=$(OPT ) >> .make-settings; \
@@ -458,7 +457,8 @@ persist-settings:
458457 echo REDIS_LDFLAGS=$(REDIS_LDFLAGS ) >> .make-settings; \
459458 echo PREV_FINAL_CFLAGS=$(FINAL_CFLAGS ) >> .make-settings; \
460459 echo PREV_FINAL_LDFLAGS=$(FINAL_LDFLAGS ) >> .make-settings; \
461- (cd ../deps && $( MAKE) $( DEPENDENCY_TARGETS) > /dev/null 2>&1 ); \
460+ cd ../deps && $(MAKE ) $(DEPENDENCY_TARGETS ) ; \
461+ touch $@ ; \
462462 else \
463463 touch $@ ; \
464464 fi
You can’t perform that action at this time.
0 commit comments