X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=t%2Fnodep2.sh;h=5633ef98cc8ace89afadc917ba4e63bb6168b961;hb=7df8b28cb170a6e67df30bd30f1753a43cf315aa;hp=edf0fa9da8a94d9bd56678054f745d6a680c20c9;hpb=76f0605a6dd790ab43cc608db11ac2141ddf46c0;p=platform%2Fupstream%2Fautomake.git diff --git a/t/nodep2.sh b/t/nodep2.sh index edf0fa9..5633ef9 100755 --- a/t/nodep2.sh +++ b/t/nodep2.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 2006-2012 Free Software Foundation, Inc. +# Copyright (C) 2006-2013 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,11 +16,11 @@ # Another test to make sure no-dependencies option does the right thing. -. ./defs || Exit 1 +. test-init.sh cat > Makefile.am << 'END' bin_PROGRAMS = foo -foo_SOURCES = a.c b.cpp c.m d.S e.java f.upc +foo_SOURCES = a.c b.cpp c.m cxx.mm d.S e.java f.upc END cat > configure.ac << 'END' @@ -30,6 +30,7 @@ AC_CONFIG_FILES([Makefile]) AC_PROG_CC AC_PROG_CXX AC_PROG_OBJC +AC_PROG_OBJCXX AM_PROG_AS AM_PROG_GCJ AM_PROG_UPC @@ -39,6 +40,6 @@ END $ACLOCAL $AUTOMAKE -grep DEPMODE Makefile.in && Exit 1 +grep DEPMODE Makefile.in && exit 1 :