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

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

automake 1.4-p6

File size: 384 bytes
Line 
1#! /bin/sh
2
3# Test to make sure install-sh and mkinstalldirs correctly found in
4# subdirs.
5
6. $srcdir/defs || exit 1
7
8mkdir zot
9
10cat > configure.in << 'END'
11PACKAGE=nonesuch
12VERSION=nonesuch
13AC_ARG_PROGRAM
14AC_PROG_MAKE_SET
15AC_PROG_INSTALL
16AC_OUTPUT(Makefile zot/Makefile)
17END
18
19cat > Makefile.am << 'END'
20SUBDIRS = zot
21END
22
23cat > zot/Makefile.am << 'END'
24pkgdata_DATA =
25END
26
27$AUTOMAKE
Note: See TracBrowser for help on using the repository browser.