From 733d4546cee292f148b8a3ff1d33bc38066338d8 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Sat, 21 Jul 2012 17:24:23 +0200 Subject: [PATCH] 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 --- .gitignore | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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]) -- 2.50.0