From: Andre Przywara Date: Mon, 8 Mar 2010 13:09:48 +0000 (+0100) Subject: configure: fix --sysconfdir specification X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~8461 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ca2fb938cdf686c4f8278974fbb6eaf2573f8f8f;p=sdk%2Femulator%2Fqemu.git configure: fix --sysconfdir specification --sysconfdir requires a parameter (the path), this should be reflected in the case pattern. Reported-by: Frank Arnold Signed-off-by: Andre Przywara Signed-off-by: Aurelien Jarno --- diff --git a/configure b/configure index abd0bf4..d728799 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" ;;