]> xenbits.xensource.com Git - libvirt.git/commitdiff
Fix minor quoting issue
authorDaniel P. Berrange <berrange@redhat.com>
Fri, 7 Dec 2007 15:17:42 +0000 (15:17 +0000)
committerDaniel P. Berrange <berrange@redhat.com>
Fri, 7 Dec 2007 15:17:42 +0000 (15:17 +0000)
ChangeLog
configure.in

index a8183eb0bbc199974850ebd800db7c1a5f87d46f..37dad89cabd10cfd4268f5ffc19f10d4959c6754 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Dec  7 10:16:00 EST 2007 Daniel P. Berrange <berrange@redhat.com>
+
+       * configure.in: ensure $prefix is quoted in conditional test
+
 Fri Dec  7 14:55:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
 
        * proxy/Makefile.am: Include gnulib code when building the
index 123cde98edc643e73e45033027d33bc9a466044b..425bb4cf478ac29c92f97dcf21bd56a47cc22e3b 100644 (file)
@@ -112,10 +112,10 @@ dnl if --prefix is /usr, don't use /usr/var for localstatedir
 dnl or /usr/etc for sysconfdir
 dnl as this makes a lot of things break in testing situations
 
-if test $prefix = "/usr" -a $localstatedir = '${prefix}/var' ; then
+if test "$prefix" = "/usr" -a "$localstatedir" = '${prefix}/var' ; then
     localstatedir='/var'
 fi
-if test $prefix = "/usr" -a $sysconfdir = '${prefix}/etc' ; then
+if test "$prefix" = "/usr" -a "$sysconfdir" = '${prefix}/etc' ; then
     sysconfdir='/etc'
 fi