about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorPaul Ackersviller <packersv@users.sourceforge.net>2007-10-11 02:48:33 +0000
committerPaul Ackersviller <packersv@users.sourceforge.net>2007-10-11 02:48:33 +0000
commitbb06206fff9272c9c5a125b4451959dec6829bd9 (patch)
tree41d60e9dcaf115645c32a97d71c85b63204c2b58 /Src
parent8bcc84af96e251acce307ad3b1eff3cb0a1e4b4a (diff)
downloadzsh-bb06206fff9272c9c5a125b4451959dec6829bd9.tar.gz
zsh-bb06206fff9272c9c5a125b4451959dec6829bd9.tar.xz
zsh-bb06206fff9272c9c5a125b4451959dec6829bd9.zip
Merge of 22466: cope with autoconf 2.60 config.status syntax.
Diffstat (limited to 'Src')
-rw-r--r--Src/mkmakemod.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/Src/mkmakemod.sh b/Src/mkmakemod.sh
index e67b7a7a8..da01c953b 100644
--- a/Src/mkmakemod.sh
+++ b/Src/mkmakemod.sh
@@ -111,9 +111,10 @@ if $first_stage; then
     sed -e '/^#/d' -e 's/ .*/ /' -e 's/^name=/ /'`"
     module_list="${bin_mods}${dyn_mods}"
 
-    # check both 2.13 and 2.50 syntax
+    # check 2.13, 2.50, and 2.60 syntaxes
     if grep '%@D@%D%' config.status >/dev/null ||
-       grep ',@D@,D,' config.status >/dev/null; then
+       grep ',@D@,D,' config.status >/dev/null ||
+       grep ',@D@,|#_!!_#|D,' config.status >/dev/null; then
 	is_dynamic=true
     else
 	is_dynamic=false