1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-19 11:31:26 +01:00

22466: cope with autoconf 2.60 config.status syntax.

This commit is contained in:
Clint Adams 2006-05-27 17:49:53 +00:00
parent 12dbe463df
commit ad49fe14d7
2 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,8 @@
2006-05-26 Clint Adams <clint@zsh.org>
* 22466: Src/mkmakemod.sh: cope with autoconf 2.60 config.status
syntax.
* 22465: Config/defs.mk.in: add datarootdir for substitution
in order to cope with change in autoconf CVS.

View file

@ -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