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

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

automake 1.4-p6

File size: 460 bytes
Line 
1#! /bin/sh
2
3# Make sure ":" works with files automake generates.
4# This test is for multiple ":"s.
5# Test from Maciej W. Rozycki.
6
7. $srcdir/defs || exit 1
8
9cat > configure.in << 'END'
10PACKAGE=nonesuch
11VERSION=nonesuch
12AC_ARG_PROGRAM
13AC_PROG_INSTALL
14AC_OUTPUT(Makefile zardoz:one:two:three)
15END
16
17: > Makefile.am
18: > one
19: > two
20: > three
21
22$AUTOMAKE || exit 1
23
24# The rule should regenerate the file "zardoz".
25grep '^zardoz:one:two' Makefile.in && exit 1
26exit 0
Note: See TracBrowser for help on using the repository browser.