X-Git-Url: https://git.draconx.ca/gitweb/dxcommon.git/blobdiff_plain/aec623761eb5cb6ad797259594664fa8aa3d3424..426a300a4a2852caf7538fd811980f9f46f6d5c1:/scripts/fix-gnulib.pl?ds=sidebyside 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";