diff options
author | Jim Meyering <jim@meyering.net> | 2007-07-08 20:09:59 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-07-08 20:09:59 +0200 |
commit | 55c53863a87516e73c055c885dbefe80b003df82 (patch) | |
tree | c0ec94fd7a6a088dc7e24e0805b57f1951ec77ba /bootstrap | |
parent | 432a7c21f02654b2fc175d3c2038ae60413a607d (diff) | |
download | coreutils-55c53863a87516e73c055c885dbefe80b003df82.tar.xz |
Run the coreutils-specific code only if tests/Makefile.am.in exists.
* bootstrap (mam_template): Move definition out of loop.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 30 |
1 files changed, 16 insertions, 14 deletions
@@ -484,20 +484,22 @@ fi # Coreutils is unusual in that it generates some of its test-related # Makefile.am files. That must be done before invoking automake. -PERL=perl -for tool in cut head join pr sort tac tail test tr uniq wc; do - m=tests/$tool/Makefile.am - t=${m}t - mam_template=tests/Makefile.am.in - rm -f $m $t - sed -n '1,/^##test-files-begin/p' $mam_template > $t - echo "x = $tool" >> $t - srcdir=tests/$tool - $PERL -I$srcdir -w -- tests/mk-script $srcdir --list >> $t - sed -n '/^##test-files-end/,$p' $mam_template >> $t - chmod -w $t - mv $t $m -done +mam_template=tests/Makefile.am.in +if test -f $mam_template; then + PERL=perl + for tool in cut head join pr sort tac tail test tr uniq wc; do + m=tests/$tool/Makefile.am + t=${m}t + rm -f $m $t + sed -n '1,/^##test-files-begin/p' $mam_template > $t + echo "x = $tool" >> $t + srcdir=tests/$tool + $PERL -I$srcdir -w -- tests/mk-script $srcdir --list >> $t + sed -n '/^##test-files-end/,$p' $mam_template >> $t + chmod -w $t + mv $t $m + done +fi # Reconfigure, getting other files. |