source: trunk/essentials/sys-devel/automake-1.4/tests/auxdir.test

Last change on this file was 3124, checked in by bird, 18 years ago

automake 1.4-p6

File size: 468 bytes
Line 
1#! /bin/sh
2
3# Test to make sure AC_CONFIG_AUX_DIR works correctly.
4
5. $srcdir/defs || exit 1
6
7# The "./." is here so we don't have to mess with subdirs.
8cat >> configure.in << 'END'
9PACKAGE=nonesuch
10VERSION=nonesuch
11AC_CONFIG_AUX_DIR(./.)
12END
13
14cat > Makefile.am << 'END'
15pkgdata_DATA =
16END
17
18# The "././" prefix confuses Automake into thinking it is doing a
19# subdir build. Yes, this is hacky.
20$AUTOMAKE ././Makefile || exit 1
21
22grep '/\./\./mkinstalldirs' Makefile.in
Note: See TracBrowser for help on using the repository browser.