am-ft: make the environment available earlier
[platform/upstream/automake.git] / t / subobj-indir-pr13928.sh
1 #! /bin/sh
2 # Copyright (C) 2013 Free Software Foundation, Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
7 # any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Expose part of Automake bug#13928: config.status generates broken
18 # makefiles if the subdir-objects option is used and a _SOURCES
19 # variable lists sources whose directory part is specified as a
20 # make variable ("foo_SOURCES = $(src)/foo.c").
21
22 required=cc
23 . test-init.sh
24
25 cat >> configure.ac << 'END'
26 AC_PROG_CC
27 AM_PROG_CC_C_O
28 AC_OUTPUT
29 END
30
31 cat > Makefile.am <<'END'
32 AUTOMAKE_OPTIONS = subdir-objects
33 src = s
34 bin_PROGRAMS = foo
35 foo_SOURCES = $(src)/foo.c
36 END
37
38 mkdir s
39 echo 'int main(void) { return 0; }' > s/foo.c
40
41 $ACLOCAL && $AUTOCONF && $AUTOMAKE -a || fatal_ "autotools failed"
42
43 ./configure
44 $MAKE
45 test -f s/.deps/foo.Po
46 find . | $FGREP '$(src)' && exit 1
47 $MAKE distcheck
48
49 :