mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-29 17:33:09 +00:00
Fix minor quoting issue
This commit is contained in:
parent
acbd696b05
commit
6dfa7af42a
@ -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>
|
Fri Dec 7 14:55:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
|
||||||
|
|
||||||
* proxy/Makefile.am: Include gnulib code when building the
|
* proxy/Makefile.am: Include gnulib code when building the
|
||||||
|
@ -112,10 +112,10 @@ dnl if --prefix is /usr, don't use /usr/var for localstatedir
|
|||||||
dnl or /usr/etc for sysconfdir
|
dnl or /usr/etc for sysconfdir
|
||||||
dnl as this makes a lot of things break in testing situations
|
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'
|
localstatedir='/var'
|
||||||
fi
|
fi
|
||||||
if test $prefix = "/usr" -a $sysconfdir = '${prefix}/etc' ; then
|
if test "$prefix" = "/usr" -a "$sysconfdir" = '${prefix}/etc' ; then
|
||||||
sysconfdir='/etc'
|
sysconfdir='/etc'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user