tests: fix an old botched change to an aclocal test
[platform/upstream/automake.git] / t / ccnoco4.sh
1 #! /bin/sh
2 # Copyright (C) 2001-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 # Check that Automake doesn't pass "-c -o" to  losing compiler when
18 # the 'subdir-objects' is used but sources are only present in the
19 # top-level directory.  Reported by Nick Bowler in the discussion on
20 # automake bug#13378:
21 # <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13378#35>
22 # <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13378#44>
23
24 required=gcc
25 . test-init.sh
26
27 # We deliberately do not call AM_PROG_CC_C_O here.
28 cat >> configure.ac << 'END'
29 AC_PROG_CC
30 $CC --version; $CC -v; # For debugging.
31 AC_OUTPUT
32 END
33
34 cat > Makefile.am << 'END'
35 AUTOMAKE_OPTIONS = subdir-objects
36 bin_PROGRAMS = foo bar
37 bar_SOURCES = foo.c
38 END
39
40 echo 'int main (void) { return 0; }' > foo.c
41
42 cat > Mycomp << END
43 #!/bin/sh
44
45 case " \$* " in
46  *\ -c*\ -o* | *\ -o*\ -c*)
47     exit 1
48     ;;
49 esac
50
51 # Use '$CC', not 'gcc', to honour the compiler chosen
52 # by the testsuite setup.
53 exec $CC "\$@"
54 END
55
56 chmod +x Mycomp
57
58 # Make sure the compiler doesn't understand '-c -o'.
59 CC=$(pwd)/Mycomp
60 export CC
61
62 $ACLOCAL
63 $AUTOCONF
64 $AUTOMAKE --copy --add-missing
65
66 ./configure
67 $MAKE
68 $MAKE distcheck
69
70 :