diff options
author | Andre Przywara <andre.przywara@amd.com> | 2010-03-08 14:09:48 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-03-13 12:07:59 +0100 |
commit | ca2fb938cdf686c4f8278974fbb6eaf2573f8f8f (patch) | |
tree | 0666259262b82d466f8870c0cb1105753389f9f9 /configure | |
parent | ea825eeefdbbceb7eadb61986e3ab9ad17ebeab8 (diff) | |
download | qemu-ca2fb938cdf686c4f8278974fbb6eaf2573f8f8f.tar.gz qemu-ca2fb938cdf686c4f8278974fbb6eaf2573f8f8f.tar.bz2 qemu-ca2fb938cdf686c4f8278974fbb6eaf2573f8f8f.zip |
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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -495,7 +495,7 @@ for opt do static="yes" LDFLAGS="-static $LDFLAGS" ;; - --sysconfdir) sysconfdir="$optarg" + --sysconfdir=*) sysconfdir="$optarg" ;; --disable-sdl) sdl="no" ;; |