From: Stefano Lattarini Date: Sat, 21 Jul 2012 15:24:23 +0000 (+0200) Subject: configure: fix botched quoting X-Git-Tag: v2.6.1~31 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/733d4546cee292f148b8a3ff1d33bc38066338d8 configure: fix botched quoting * configure.ac: In the AC_SUBST call on 'VALGRIND_PREBISON'. Without this change, when running ./configure, I see: ... checking for valgrind... valgrind ./configure: line 35221: -q: command not found checking for Java compiler... gcj -C -fsource=1.3 -ftarget=1.4 ... Copyright-paperwork-exempt: yes Signed-off-by: Stefano Lattarini --- diff --git a/.gitignore b/.gitignore index a81896f1..bfb7caf4 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,7 @@ /INSTALL /Makefile /Makefile.in +/README-release /_* /a.exe /a.out @@ -31,4 +32,3 @@ /patches /releases /stamp-h* -/README-release diff --git a/configure.ac b/configure.ac index 2773167a..b9d2ea69 100644 --- a/configure.ac +++ b/configure.ac @@ -170,7 +170,7 @@ case $VALGRIND:$host_os in # VALGRIND+=' --suppressions=$(abs_top_srcdir)/build-aux/darwin11.4.0.valgrind' VALGRIND=;; *:*) - AC_SUBST([VALGRIND_PREBISON], [$VALGRIND -q]);; + AC_SUBST([VALGRIND_PREBISON], ["$VALGRIND -q"]);; esac AM_MISSING_PROG([AUTOM4TE], [autom4te])