source:
trunk/essentials/sys-devel/automake-1.4/tests/mkinst2.test
Last change on this file was 3124, checked in by , 18 years ago | |
---|---|
File size: 350 bytes |
Line | |
---|---|
1 | #! /bin/sh |
2 | |
3 | # Test to make sure no-installman suppresses man dir creation. |
4 | |
5 | . $srcdir/defs || exit 1 |
6 | |
7 | cat > Makefile.am << 'END' |
8 | AUTOMAKE_OPTIONS = no-installman |
9 | man_MANS = foo.1 |
10 | END |
11 | |
12 | : > foo.1 |
13 | |
14 | cat > mkinstalldirs << 'END' |
15 | echo "$@" |
16 | END |
17 | |
18 | chmod +x mkinstalldirs |
19 | |
20 | $AUTOMAKE || exit 1 |
21 | |
22 | ($MAKE -s -f Makefile.in installdirs | grep man) && exit 1 |
23 | exit 0 |
Note:
See TracBrowser
for help on using the repository browser.