summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@amd.com>2010-03-08 14:09:48 +0100
committerAurelien Jarno <aurelien@aurel32.net>2010-03-13 12:07:59 +0100
commitca2fb938cdf686c4f8278974fbb6eaf2573f8f8f (patch)
tree0666259262b82d466f8870c0cb1105753389f9f9 /configure
parentea825eeefdbbceb7eadb61986e3ab9ad17ebeab8 (diff)
downloadqemu-ca2fb938cdf686c4f8278974fbb6eaf2573f8f8f.tar.gz
configure: fix --sysconfdir specification
--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>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index abd0bf46fc..d728799d8b 100755
--- 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"
;;