From 426a300a4a2852caf7538fd811980f9f46f6d5c1 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Tue, 12 Mar 2013 18:51:24 -0400 Subject: [PATCH] fix-gnulib: Strip out useless SUFFIXES assignments. These are useless because Automake handles trivial cases automatically. --- scripts/fix-gnulib.pl | 4 ++++ 1 file changed, 4 insertions(+) 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"; -- 2.43.0