From ca2fb938cdf686c4f8278974fbb6eaf2573f8f8f Mon Sep 17 00:00:00 2001 From: Andre Przywara Date: Mon, 8 Mar 2010 14:09:48 +0100 Subject: [PATCH] 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ;;