diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2017-04-24 03:13:28 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2017-04-25 03:25:41 -0400 |
commit | 338f427a24f78a717888c7c2b6b91fa831bea28e (patch) | |
tree | cb1e6a6d1825a9985f9425dda45f6beedbb324db /m4 | |
parent | 93567071b744975e191c5732d9cbe4b0d529f4c9 (diff) | |
download | curl-338f427a24f78a717888c7c2b6b91fa831bea28e.tar.gz |
configure: stop prepending to LDFLAGS, CPPFLAGS
- Change prepends to appends because user's LDFLAGS and CPPFLAGS should
always come first so they're searched before ours.
Bug: https://github.com/curl/curl/issues/1420
Reported-by: Helmut K. C. Tessarek
Diffstat (limited to 'm4')
-rw-r--r-- | m4/curl-confopts.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/curl-confopts.m4 b/m4/curl-confopts.m4 index b86e0fc4f..42f2a965a 100644 --- a/m4/curl-confopts.m4 +++ b/m4/curl-confopts.m4 @@ -516,8 +516,8 @@ AC_DEFUN([CURL_CHECK_LIB_ARES], [ fi fi # - CPPFLAGS="$ares_CPPFLAGS $clean_CPPFLAGS" - LDFLAGS="$ares_LDFLAGS $clean_LDFLAGS" + CPPFLAGS="$clean_CPPFLAGS $ares_CPPFLAGS" + LDFLAGS="$clean_LDFLAGS $ares_LDFLAGS" LIBS="$ares_LIBS $clean_LIBS" # if test "$embedded_ares" != "yes"; then |