Skip to content

Commit 5bf5dc6

Browse files
committed
[fix] decoupling librocksdb.a
1 parent a5ebf6c commit 5bf5dc6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)