Line | |
---|
1 | #! /bin/sh
|
---|
2 |
|
---|
3 | # Test for a bug reported by Akim Demaille.
|
---|
4 | # LIBOBJS specified in the "wrong order" aren't seen.
|
---|
5 |
|
---|
6 | . $srcdir/defs || exit 1
|
---|
7 |
|
---|
8 | cat > configure.in << 'END'
|
---|
9 | PACKAGE=nonesuch
|
---|
10 | VERSION=nonesuch
|
---|
11 | AC_PROG_CC
|
---|
12 | AC_ARG_PROGRAM
|
---|
13 | AC_PROG_INSTALL
|
---|
14 | AC_PROG_RANLIB
|
---|
15 | LIBOBJS="fsusage.o mountlist.o $LIBOBJS"
|
---|
16 | AC_OUTPUT(Makefile)
|
---|
17 | END
|
---|
18 |
|
---|
19 | cat > Makefile.am << 'END'
|
---|
20 | noinst_LIBRARIES = libtu.a
|
---|
21 | libtu_a_SOURCES =
|
---|
22 | libtu_a_LIBADD = @LIBOBJS@
|
---|
23 | END
|
---|
24 |
|
---|
25 | : > fsusage.c
|
---|
26 | : > mountlist.c
|
---|
27 |
|
---|
28 | $AUTOMAKE
|
---|
Note:
See
TracBrowser
for help on using the repository browser.