repo.or.cz
/
automake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
typo + new comment
[automake.git]
/
tests
/
fpinst2.test
blob
781d8e263aadf965388db778b52dfb8f34be8dc9
1
#! /bin/sh
2
3
# Test to make sure "reversed" order of AC_PROG_INSTALL and
4
# AC_PROG_INSTALL is not buggy.
5
6
.
$srcdir
/
defs ||
exit
1
7
8
cat
>
configure.
in
<<
'END'
9
AM_INIT_AUTOMAKE
(
nonesuch
,
nonesuch
)
10
PACKAGE
=
nonesuch
11
VERSION
=
nonesuch
12
AC_ARG_PROGRAM
13
AC_PROG_MAKE_SET
14
AC_PROG_INSTALL
15
AC_PROG_INSTALL
16
AC_OUTPUT
(
Makefile
)
17
END
18
19
cat
>
Makefile.am
<<'END'
20
bin_SCRIPTS = zot
21
END
22
23
$AUTOMAKE
||
exit
1