From: antirez Date: Tue, 12 Jul 2011 10:58:32 +0000 (+0200) Subject: when building redis-server use LINK and not CC as prefix in the output X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/331bf3292f249fac99226c591b40fd64a8d7106a?hp=--cc when building redis-server use LINK and not CC as prefix in the output --- 331bf3292f249fac99226c591b40fd64a8d7106a diff --git a/src/Makefile b/src/Makefile index 84cb1cda..d3567aa7 100644 --- a/src/Makefile +++ b/src/Makefile @@ -170,7 +170,7 @@ dependencies: cd ../deps/jemalloc && ./configure $(JEMALLOC_CFLAGS) --with-jemalloc-prefix=je_ --enable-cc-silence && $(MAKE) lib/libjemalloc.a redis-server: $(OBJ) - $(QUIET_CC)$(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ) $(CCLINK) $(ALLOC_LINK) ../deps/lua/src/liblua.a + $(QUIET_LINK)$(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ) $(CCLINK) $(ALLOC_LINK) ../deps/lua/src/liblua.a redis-benchmark: dependencies $(BENCHOBJ) @cd ../deps/hiredis && $(MAKE) static