]> sourceware.org Git - automake.git/commitdiff
* lib/am/scripts.am (installcheck-%DIR%SCRIPTS): Account for
authorAlexandre Duret-Lutz <adl@gnu.org>
Thu, 5 Sep 2002 10:06:13 +0000 (10:06 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Thu, 5 Sep 2002 10:06:13 +0000 (10:06 +0000)
Sun make rewriting rules in VPATH builds.  (Fixes gnits3.test.)
* lib/am/progs.am (installcheck-%DIR%PROGRAMS): Likewise.

ChangeLog
lib/am/progs.am
lib/am/scripts.am

index 27216a62c276b7963cd7937fa96e2bfb28059bb3..3ec7a275787e97dde5374457e0b046c1fc300521 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-09-05  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       * lib/am/scripts.am (installcheck-%DIR%SCRIPTS): Account for
+       Sun make rewriting rules in VPATH builds.  (Fixes gnits3.test.)
+       * lib/am/progs.am (installcheck-%DIR%PROGRAMS): Likewise.
+
 2002-09-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
        For automake/354:
index 071528372c27d89aac9384721779cd13024c288b..7ca20b642ccb77f0807191c525a08627a5b71901 100644 (file)
@@ -110,7 +110,9 @@ if %?CK-OPTS%
 installcheck-%DIR%PROGRAMS: $(%DIR%_PROGRAMS)
        bad=0; pid=$$$$; list="$(%DIR%_PROGRAMS)"; for p in $$list; do \
          case ' $(AM_INSTALLCHECK_STD_OPTIONS_EXEMPT) ' in \
-          *" $$p "*) continue;; \
+## Match $(srcdir)/$$p in addition to $$p because Sun make might rewrite
+## filenames in AM_INSTALLCHECK_STD_OPTIONS_EXEMPT during VPATH builds.
+          *" $$p "* | *" $(srcdir)/$$p "*) continue;; \
          esac; \
 ## Strip the directory and $(EXEEXT) before applying $(transform).
          f=`echo "$$p" | \
index 6b219d691be7b15710d1dbb6d5bd4a824afd42d0..a2b62ab321a61402c17e774bbb192c4d62d4d23e 100644 (file)
@@ -89,7 +89,9 @@ if %?CK-OPTS%
 installcheck-%DIR%SCRIPTS: $(%DIR%_SCRIPTS)
        bad=0; pid=$$$$; list="$(%DIR%_SCRIPTS)"; for p in $$list; do \
          case ' $(AM_INSTALLCHECK_STD_OPTIONS_EXEMPT) ' in \
-          *" $$p "*) continue;; \
+## Match $(srcdir)/$$p in addition to $$p because Sun make might rewrite
+## filenames in AM_INSTALLCHECK_STD_OPTIONS_EXEMPT during VPATH builds.
+          *" $$p "* | *" $(srcdir)/$$p "*) continue;; \
          esac; \
 ## Strip any leading directory before applying $(transform).
          f=`echo "$$p" | sed 's,^.*/,,;$(transform)'`; \
This page took 0.02722 seconds and 5 git commands to generate.