diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-11-10 10:34:20 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-11-10 10:34:20 +0000 |
commit | e4cae97633d68af424aef1494462550cef2dadeb (patch) | |
tree | 0e82baf23b3900e995c132775fc75213c0984cf4 /Build/source/reautoconf | |
parent | 558303c70cdfd3bc2465cb99c2f8d81a64efcf31 (diff) |
towards TL2010: build system
git-svn-id: svn://tug.org/texlive/trunk@15977 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/reautoconf')
-rwxr-xr-x | Build/source/reautoconf | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/Build/source/reautoconf b/Build/source/reautoconf index bac114fcf79..dcb1b0e2834 100755 --- a/Build/source/reautoconf +++ b/Build/source/reautoconf @@ -97,7 +97,7 @@ do_it () { } if test "x$list" = x; then - list=". libs utils texk `find libs utils texk -type d -name ac | + list=". auxdir/auxsub libs utils texk `find libs utils texk -type d -name ac | sed 's,/ac\$,,'`" fi @@ -113,17 +113,13 @@ for dir in $list; do echo "$0: $dir/configure.ac: no such file, skipping." >&2 continue fi - extra_dirs= - case $dir in - .) ;; - libs | utils | texk) - extra_dirs=$dir/dummy ;; - *) if test -f "$dir/ac/withenable.ac"; then - extra_dirs=`grep 'dnl extra_dirs = ' $dir/ac/withenable.ac | - sed 's,^.*= ,,'` - fi ;; - esac - do_it "autoreconf $verbose --no-recursive $dir $extra_dirs" + if test -f "$dir/ac/withenable.ac"; then + extra_dirs=`grep 'dnl extra_dirs = ' $dir/ac/withenable.ac | + sed 's,^.*= ,,'` + else + extra_dirs= + fi + do_it autoreconf $verbose --no-recursive $dir $extra_dirs done echo "$0: done." |