diff options
author | Yang Tse <yangsita@gmail.com> | 2012-12-04 23:30:05 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-12-04 23:32:05 +0100 |
commit | b908376bef462644e204b50f7a8c3df5871883bf (patch) | |
tree | 4354dac9f4262bcd99746946d022f95ad3b7217b /tests/libtest | |
parent | 8b02afd9a938d6db150fa1ba34cca64de873f5d8 (diff) |
build: explain current role of LIBS in our Makefile.am files
BLANK_AT_MAKETIME may be used in our Makefile.am files to blank
LIBS variable used in generated makefile at makefile processing
time. Doing this functionally prevents LIBS from being used for
all link targets in given makefile.
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/libtest/Makefile.am b/tests/libtest/Makefile.am index a9d0b9031..df13df111 100644 --- a/tests/libtest/Makefile.am +++ b/tests/libtest/Makefile.am @@ -55,8 +55,7 @@ test1022.pl Makefile.inc notexists.pl CFLAG_CURL_SYMBOL_HIDING = @CFLAG_CURL_SYMBOL_HIDING@ -# Prevent global LIBS from influencing libtest build targets -BLANK_AT_MAKETIME = @BLANK_AT_MAKETIME@ +# Prevent LIBS from being used for all link targets LIBS = $(BLANK_AT_MAKETIME) if USE_EXPLICIT_LIB_DEPS |