diff options
author | Yang Tse <yangsita@gmail.com> | 2012-11-29 21:56:48 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-11-29 21:56:48 +0100 |
commit | d27a46f09b9e52f5f37093f25893f2907fc1061b (patch) | |
tree | 1a25f2728c211a4b67aace8e7957c31150dd99ec /configure.ac | |
parent | 4abf4fbaac170baca0b64063144e544805e0de11 (diff) | |
download | curl-d27a46f09b9e52f5f37093f25893f2907fc1061b.tar.gz |
build: prevent global LIBS from influencing test server build targets
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 59df0c77d..b6a8a632c 100644 --- a/configure.ac +++ b/configure.ac @@ -3339,6 +3339,13 @@ AC_SUBST(CURL_NETWORK_LIBS) AC_SUBST(CURL_NETWORK_AND_TIME_LIBS) LIBS=$ALL_LIBS dnl LIBS is a magic variable that's used for every link +dnl BLANK_AT_MAKETIME might be used in some of our Makefile.am files to +dnl blank LIBS variable used in generated makefile at makefile processing +dnl time. Our test server's Makefile.am uses this to prevent global LIBS +dnl from being used for any test server build target. +BLANK_AT_MAKETIME= +AC_SUBST(BLANK_AT_MAKETIME) + AM_CONDITIONAL(CROSSCOMPILING, test x$cross_compiling = xyes) dnl yes or no |