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 abd0bf4..d728799 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"
   ;;