diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-05-28 10:54:25 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-05-28 11:22:11 +0200 |
commit | a4c5b27bf4d2b4c0090a0c539e64f90f0b9ca703 (patch) | |
tree | 162f6c44db6a6fad2059ac2bd6c02667f2fb1e30 /NEWS | |
parent | f98ca06830cbb484476b0aa9f79f79907538db4b (diff) | |
download | automake-a4c5b27bf4d2b4c0090a0c539e64f90f0b9ca703.tar.gz |
NEWS: document fix for bug#14441
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -87,6 +87,16 @@ New in 1.13.3: - Byte-compilation of Emacs lisp files could fail spuriously on Solaris, when /bin/ksh or /usr/xpg4/bin/sh were used as shell. + - The same user-defined suffix being transformed into different + Automake-known suffixes in different Makefiles could confuse automake + and make it generate inconsistent Makefiles (automake bug#14441). + For example, if 'Makefile.am' contained a ".ext.cc:" suffix rule, and + 'sub/Makefile.am' contained a ".ext.c:" suffix rule, automake would + have mistakenly put into 'Makefile.in' rules to compile *.c files + into object files, and into 'sub/Makefile.in' rules to compile *.cc + files into object files --- rather than the other way around. + This is now fixed. + * Testsuite work: - The test cases no longer have the executable bit set. This should |