]> git.proxmox.com Git - mirror_qemu.git/commitdiff
configure: fix --sysconfdir specification
authorAndre Przywara <andre.przywara@amd.com>
Mon, 8 Mar 2010 13:09:48 +0000 (14:09 +0100)
committerAurelien Jarno <aurelien@aurel32.net>
Sat, 13 Mar 2010 11:07:59 +0000 (12:07 +0100)
--sysconfdir requires a parameter (the path), this should be reflected
in the case pattern.

Reported-by: Frank Arnold <frank.arnold@amd.com>
Signed-off-by: Andre Przywara <andre.przywara@amd.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
configure

index abd0bf46fc793518da82541c8885f22d1c317688..d728799d8bc95acf322e98daf1f211f2b6c43ac6 100755 (executable)
--- a/configure
+++ b/configure
@@ -495,7 +495,7 @@ for opt do
     static="yes"
     LDFLAGS="-static $LDFLAGS"
   ;;
-  --sysconfdir) sysconfdir="$optarg"
+  --sysconfdir=*) sysconfdir="$optarg"
   ;;
   --disable-sdl) sdl="no"
   ;;