1 | #! /bin/sh
|
---|
2 | # Copyright (C) 2003, 2004 Free Software Foundation, Inc.
|
---|
3 | #
|
---|
4 | # This file is part of GNU Automake.
|
---|
5 | #
|
---|
6 | # GNU Automake is free software; you can redistribute it and/or modify
|
---|
7 | # it under the terms of the GNU General Public License as published by
|
---|
8 | # the Free Software Foundation; either version 2, or (at your option)
|
---|
9 | # any later version.
|
---|
10 | #
|
---|
11 | # GNU Automake is distributed in the hope that it will be useful,
|
---|
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | # GNU General Public License for more details.
|
---|
15 | #
|
---|
16 | # You should have received a copy of the GNU General Public License
|
---|
17 | # along with Automake; see the file COPYING. If not, write to
|
---|
18 | # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
---|
19 | # Boston, MA 02110-1301, USA.
|
---|
20 |
|
---|
21 | # Test to make sure that AC_CONFIG_LINKS using a variable source
|
---|
22 | # is not broken.
|
---|
23 |
|
---|
24 | . ./defs || exit 1
|
---|
25 |
|
---|
26 | set -e
|
---|
27 |
|
---|
28 | # Skip platforms where `test -e' does not work. (Note that Changing
|
---|
29 | # all `test -e' into `test -h' will not work when AC_CONFIG_LINKS
|
---|
30 | # copies or hardlinks files.)
|
---|
31 | (test -e configure.in) >/dev/null 2>&1 || exit 77
|
---|
32 |
|
---|
33 | cat > Makefile.am << 'END'
|
---|
34 | SUBDIRS = sdir
|
---|
35 | test: distdir
|
---|
36 | test ! -e $(distdir)/sdir/dest3
|
---|
37 | test ! -e $(distdir)/sdir/dest2
|
---|
38 | test ! -e $(distdir)/dest3
|
---|
39 | test ! -e $(distdir)/dest2
|
---|
40 | test -f $(distdir)/src2
|
---|
41 | ## src3 cannot be distributed, Automake knows nothing about it
|
---|
42 | test ! -e $(distdir)/sdir/src3
|
---|
43 | test ! -e $(distdir)/src3
|
---|
44 | END
|
---|
45 |
|
---|
46 | : > src
|
---|
47 | : > src2
|
---|
48 | mkdir sdir
|
---|
49 | : > sdir/Makefile.am
|
---|
50 | : > sdir/src3
|
---|
51 |
|
---|
52 | cat >>configure.in << 'EOF'
|
---|
53 | AC_CONFIG_FILES(sdir/Makefile)
|
---|
54 | my_src_dir=sdir
|
---|
55 | my_dest=dest
|
---|
56 | AC_CONFIG_LINKS(sdir/dest2:src2 sdir/dest3:$my_src_dir/src3)
|
---|
57 | AC_CONFIG_LINKS($my_dest:src)
|
---|
58 | # the following is a link whose source is itself a link
|
---|
59 | AC_CONFIG_LINKS(dest4:sdir/dest2)
|
---|
60 | # Some package prefer to compute links.
|
---|
61 | cmplink='dest5:src';
|
---|
62 | AC_CONFIG_LINKS($cmplink)
|
---|
63 | AC_OUTPUT
|
---|
64 | EOF
|
---|
65 |
|
---|
66 | $ACLOCAL
|
---|
67 | $AUTOCONF
|
---|
68 | $AUTOMAKE
|
---|
69 |
|
---|
70 | # $my_src_dir and $my_dest are variables local to configure, they should
|
---|
71 | # not appear in Makefile.
|
---|
72 | grep my_src_dir Makefile.in && exit 1
|
---|
73 | grep my_dest Makefile.in && exit 1
|
---|
74 |
|
---|
75 | ./configure
|
---|
76 | test -e sdir/dest2
|
---|
77 | test -e sdir/dest3
|
---|
78 | test -e dest
|
---|
79 | test -e dest4
|
---|
80 | test -e dest5
|
---|
81 | $MAKE test
|
---|
82 |
|
---|
83 | $MAKE distclean
|
---|
84 | test ! -e sdir/dest2
|
---|
85 | test ! -e sdir/dest3
|
---|
86 | test -e dest # Should still exist, Automake knows nothing about it.
|
---|
87 | test -e dest5 # ditto
|
---|
88 | rm -f dest dest5
|
---|
89 | test ! -e dest4
|
---|
90 |
|
---|
91 | ## Cannot do the following, because at the time of writing Autoconf
|
---|
92 | ## (2.59) does not support AC_CONFIG_LINKS source in the build tree.
|
---|
93 | # mkdir build
|
---|
94 | # cd build
|
---|
95 | # ../configure
|
---|
96 | # $MAKE test
|
---|