Author :
Tom Tromey
Date :
1998-09-26 18:32:31
Hash :c7266e91 Message : Test suite updates for the @SHELL@ change:
* exsource.test: Set SHELL on `make' command line.
* ansi.test: Set SHELL on `make' command line.
* texinfo.test: Set SHELL on `make' command line.
* insh2.test: Set SHELL on `make' command line.
* empty.test: Rewrite @SHELL@ to /bin/sh.
tests/empty.test
#! /bin/sh
# Test for bug where if the list of installables is empty, invalid sh
# code is generated.
. $srcdir/defs || exit 1
cat > Makefile.am << 'END'
data_DATA =
END
$AUTOMAKE || exit 1
# Create configure so Makefile doesn't look out-of-date.
echo frob > configure
echo frob > config.status
# Need a mkinstalldirs we can actually execute. make on my Linux box
# won't execute this file if is empty, or has just a colon in it (but
# it will run from the shell).
cat > mkinstalldirs << 'END'
#!/bin/sh
END
chmod +x mkinstalldirs
# Substitute variables we need.
sed -e 's,@SHELL@,/bin/sh,g' -e 's/@srcdir@/./g' \
-e 's/@top_srcdir@/./g' -e 's/@datadir@/./g' \
< Makefile.in > Makefile
$MAKE install