diff options
author | Lars Müller <lars@samba.org> | 2009-02-02 21:38:38 +0100 |
---|---|---|
committer | Lars Müller <lars@samba.org> | 2009-02-02 21:42:33 +0100 |
commit | dbfdfd047e8e69942b3289733d300d716cdbec53 (patch) | |
tree | b9f2879d5539bbd617ad502e848c320ef6e19d16 | |
parent | fda450e4d6f9d2661235a3422c0db644a6c686b3 (diff) | |
download | samba-dbfdfd047e8e69942b3289733d300d716cdbec53.tar.gz |
Adjust regex to match variable names including underscores
This is required to get the CIFSUPCALL_PROGS setting extracted from
config.log.
-rwxr-xr-x | source/script/installman.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |