From: Nick Bowler Date: Tue, 12 Mar 2013 22:51:24 +0000 (-0400) Subject: fix-gnulib: Strip out useless SUFFIXES assignments. X-Git-Url: http://git.draconx.ca/gitweb/dxcommon.git/commitdiff_plain/426a300a4a2852caf7538fd811980f9f46f6d5c1 fix-gnulib: Strip out useless SUFFIXES assignments. These are useless because Automake handles trivial cases automatically. --- diff --git a/scripts/fix-gnulib.pl b/scripts/fix-gnulib.pl index e043d77..4b47ce2 100755 --- a/scripts/fix-gnulib.pl +++ b/scripts/fix-gnulib.pl @@ -165,6 +165,10 @@ EOF # handle them all manually. drop if (/LDFLAGS/); + # Current uses of SUFFIXES in gnulib are pointless since Automake will + # figure it out all on its own. Strip it out. + drop if (/SUFFIXES/); + # Rewrite automake hook targets to be more generic. if (s/^(.*)-local:/\1-gnulib:/) { print ".PHONY: $1-gnulib\n";