mirror of
https://github.com/curl/curl.git
synced 2026-08-26 16:23:32 +03:00
Ensure that shell variable contents which have active meaning
to the shell echo command are not interpreted when trying to remove extra whitespace from shell variable content.
This commit is contained in:
parent
357383159e
commit
be760bed7e
4 changed files with 130 additions and 46 deletions
16
configure.ac
16
configure.ac
|
|
@ -2534,15 +2534,15 @@ AC_SUBST(SUPPORT_PROTOCOLS)
|
|||
|
||||
dnl squeeze whitespace out of some variables
|
||||
|
||||
CFLAGS=`eval echo $CFLAGS`
|
||||
CPPFLAGS=`eval echo $CPPFLAGS`
|
||||
DEFS=`eval echo $DEFS`
|
||||
LDFLAGS=`eval echo $LDFLAGS`
|
||||
LIBS=`eval echo $LIBS`
|
||||
squeeze CFLAGS
|
||||
squeeze CPPFLAGS
|
||||
squeeze DEFS
|
||||
squeeze LDFLAGS
|
||||
squeeze LIBS
|
||||
|
||||
CURL_LIBS=`eval echo $CURL_LIBS`
|
||||
LIBCURL_LIBS=`eval echo $LIBCURL_LIBS`
|
||||
TEST_SERVER_LIBS=`eval echo $TEST_SERVER_LIBS`
|
||||
squeeze CURL_LIBS
|
||||
squeeze LIBCURL_LIBS
|
||||
squeeze TEST_SERVER_LIBS
|
||||
|
||||
AC_CONFIG_FILES([Makefile \
|
||||
docs/Makefile \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue