X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=t%2Fno-extra-makefile-code.sh;h=64ef502a80435237ee48af7a6b4f10671eb5f6d4;hb=a7c00e1935726a32dca6871dd0f1b7eda28d0a5b;hp=ab0e33d3af597a16c26768c8ddb0eb677475dd95;hpb=c49475046c64789daf647f2b566be8fe49aced72;p=platform%2Fupstream%2Fautomake.git diff --git a/t/no-extra-makefile-code.sh b/t/no-extra-makefile-code.sh old mode 100755 new mode 100644 index ab0e33d..64ef502 --- a/t/no-extra-makefile-code.sh +++ b/t/no-extra-makefile-code.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (C) 1996-2012 Free Software Foundation, Inc. +# Copyright (C) 2011-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 @@ -19,18 +19,23 @@ # by a regression caused by removal of automatic de-ANSI-fication support: # -. ./defs || exit 1 +. test-init.sh echo AC_OUTPUT >> configure.ac : > Makefile.am +# Automake shouldn't need nor require these. rm -f depcomp compile $ACLOCAL + +# Don't use '--add-missing' here, so that we can implicitly +# check that the auxiliary scripts 'compile' and 'depcomp' +# are not spuriously required by Automake. $AUTOMAKE -$EGREP 'DEFAULT_INCLUDES|@am__isrc@|-compile|\$\(OBJEXT\)|tab\.[ch]' \ +$EGREP 'INCLUDES|@am__isrc@|-compile|\$\(OBJEXT\)|tab\.[ch]' \ Makefile.in && exit 1 :