From dbfdfd047e8e69942b3289733d300d716cdbec53 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lars=20M=C3=BCller?= Date: Mon, 2 Feb 2009 21:38:38 +0100 Subject: [PATCH] Adjust regex to match variable names including underscores This is required to get the CIFSUPCALL_PROGS setting extracted from config.log. --- source/script/installman.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/script/installman.sh b/source/script/installman.sh index 76b8845f3f3..ad085139d9e 100755 --- a/source/script/installman.sh +++ b/source/script/installman.sh @@ -20,7 +20,7 @@ fi # Get the configured feature set test -f "${SRCDIR}/config.log" && \ - eval `grep "^[[:alnum:]]*=.*" "${SRCDIR}/config.log"` + eval `grep "^[[:alnum:]_]*=.*" "${SRCDIR}/config.log"` for lang in $langs; do if [ "X$lang" = XC ]; then -- 2.11.4.GIT