From: Christian Hesse Date: Tue, 23 May 2023 07:40:18 +0000 (+0200) Subject: configure: quote the assignments for run-compiler X-Git-Tag: curl-8_1_2~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=471dab2;p=thirdparty%2Fcurl.git configure: quote the assignments for run-compiler Building for multilib failed, as the compiler command contains an extra argument. That needs quoting. Regression from b78ca50cb3dda361f9c1 Fixes #11179 Closes #11180 --- diff --git a/configure.ac b/configure.ac index 75a882b12a..17dd05a94c 100644 --- a/configure.ac +++ b/configure.ac @@ -193,8 +193,8 @@ dnl something different but only have that affect the execution of the results dnl of the compile, not change the libraries for the compiler itself. dnl compilersh="run-compiler" -echo "CC=$CC" > $compilersh -echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH" >> $compilersh +echo "CC=\"$CC\"" > $compilersh +echo "LD_LIBRARY_PATH=\"$LD_LIBRARY_PATH\"" >> $compilersh echo 'exec $CC $@' >> $compilersh dnl **********************************************************************