From f4b5365fbd6ee65d9074c6f6ae89c43dc12d341b 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. (cherry picked from commit 64982295fccc5758aff4464b5527a27621386bc9) --- 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 75e53813a01..085e86227c2 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