aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2016-03-21 10:16:10 +0100
committerMax Kellermann <max@duempel.org>2016-04-21 09:45:45 +0200
commit22ac865c0449c95b0c7bcf1f3feaebc39d882833 (patch)
tree7c0850114c9fc49e7b97770cb347d9ae2bfc0fe2 /configure.ac
parent18e1df6aa83f0e1481bd9ac52d7e76a8e69fbba2 (diff)
configure.ac: quote ${CC} and ${CXX}
Allow them to have spaces.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index c4e83a23fc..7340b62604 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1946,8 +1946,8 @@ else
final_message="$final_message\n MID Support:\tNo"
fi
-ORIGCC=$CC
-ORIGCXX=$CXX
+ORIGCC="$CC"
+ORIGCXX="$CXX"
if test "x$use_ccache" != "xno"; then
AC_PATH_PROG(CCACHE,ccache,none)
if test "$ac_cv_path_CCACHE" = "none"; then