]> sourceware.org Git - automake.git/commitdiff
Fix for PR automake/204:
authorAlexandre Duret-Lutz <adl@gnu.org>
Sat, 19 Jan 2002 08:36:13 +0000 (08:36 +0000)
committerAlexandre Duret-Lutz <adl@gnu.org>
Sat, 19 Jan 2002 08:36:13 +0000 (08:36 +0000)
* tests/pr204.test: New file.
* tests/Makefile.am (TESTS): Add it.
* automake.in (handle_single_transform_list): Don't distribute
sources derived from non-distributed sources.

ChangeLog
automake.in
tests/Makefile.am
tests/Makefile.in
tests/pr204.test [new file with mode: 0755]

index 5f8d3b60a8ae27f8a0c29504170be8f033d1545e..20c2b5adc756a28b5ed20a4f4059487a77337435 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2002-01-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
+
+       Fix for PR automake/204:
+       * tests/pr204.test: New file.
+       * tests/Makefile.am (TESTS): Add it.
+       * automake.in (handle_single_transform_list): Don't distribute
+       sources derived from non-distributed sources.
+
 2002-01-18  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
        Fix for PR automake/229:
index ff67e62a51970e2968ac52ed5770382f016b6fa3..3ab25bcb7d46be680b8cbf9ad6a41a28fd23795e 100755 (executable)
@@ -2012,8 +2012,10 @@ sub handle_single_transform_list ($$$$@)
            # Make sure this new source file is handled next.  That will
            # make it appear to be at the right place in the list.
            unshift (@files, $object);
-           # FIXME: nodist.
-           &push_dist_common ($object);
+           # Distribute derived sources unless the source they are
+           # derived from is not.
+           &push_dist_common ($object)
+               unless ($topparent =~ /^(:?nobase_)?nodist_/);
            next;
        }
 
index 84603d375a7413d584c653c27b7aa3e77ac15eec..4f93d5e940ca2ee581eb0faf2cd8b7f118112968 100644 (file)
@@ -249,6 +249,7 @@ pluseq7.test \
 pluseq8.test \
 ppf77.test \
 pr2.test \
+pr204.test \
 pr211.test \
 pr220.test \
 pr229.test \
index c1a6d7e0221c4848590987ce79d36a4800b51a1b..2eab6a5ddbf7f34a9934e0937ac34766e2189e68 100644 (file)
@@ -323,6 +323,7 @@ pluseq7.test \
 pluseq8.test \
 ppf77.test \
 pr2.test \
+pr204.test \
 pr211.test \
 pr220.test \
 pr229.test \
diff --git a/tests/pr204.test b/tests/pr204.test
new file mode 100755 (executable)
index 0000000..394590a
--- /dev/null
@@ -0,0 +1,54 @@
+#! /bin/sh
+# For PR 204.
+# Sources derived from nodist_ sources should not be distributed.
+
+required=bison
+
+. $srcdir/defs || exit 1
+
+set -e
+
+cat > configure.in <<'EOF'
+AC_INIT(pr204, 0.1)
+AM_INIT_AUTOMAKE
+AC_PROG_CC
+AC_PROG_YACC
+AC_CONFIG_FILES(Makefile)
+AC_OUTPUT
+EOF
+
+# The PARSE2 intermediate variable is there to make
+# sure Automake match 'nodist_' against the right
+# variable name...
+cat > Makefile.am << 'EOF'
+EXTRA_PROGRAMS = foo
+PARSE2 = parse2.y
+nodist_foo_SOURCES = parse.y $(PARSE2)
+EOF
+
+cat > parse.y << 'END'
+%{
+int yylex () {return 0;}
+void yyerror (char *s) {}
+%}
+%%
+maude : 'm' 'a' 'u' 'd' 'e' {};
+END
+
+cp parse.y parse2.y
+
+# We are not checking Autoconf, so we pick $YACC for it.
+YACC="bison -y"
+export YACC
+
+$ACLOCAL
+$AUTOCONF
+$AUTOMAKE -a
+./configure
+$MAKE distdir
+test -f pr204-0.1/parse.c && exit 1
+test -f pr204-0.1/parse.y && exit 1
+test -f pr204-0.1/parse2.c && exit 1
+test -f pr204-0.1/parse2.y && exit 1
+# Make sure parse.c and parse2.c are still targets.
+make parse.c parse2.c
This page took 0.044934 seconds and 5 git commands to generate.