* configure.in: Bump version to 1.5b.
[automake.git] / tests / auxdir.test
blob18d6e47a4f725218296a2b03b4948bdf1250eab8
1 #! /bin/sh
3 # Test to make sure AC_CONFIG_AUX_DIR works correctly.
5 . $srcdir/defs || exit 1
7 # The "./." is here so we don't have to mess with subdirs.
8 cat >> configure.in << 'END'
9 AC_CONFIG_AUX_DIR(./.)
10 END
12 cat > Makefile.am << 'END'
13 pkgdata_DATA =
14 END
16 # The "././" prefix confuses Automake into thinking it is doing a
17 # subdir build. Yes, this is hacky.
18 $ACLOCAL || exit 1
19 $AUTOMAKE ././Makefile || exit 1
21 grep '/\./\./mkinstalldirs' Makefile.in