From 5521219348c55af354878583b99c5f9d66d6d38a Mon Sep 17 00:00:00 2001 From: Mathieu Lirzin Date: Sun, 27 Aug 2017 15:27:00 +0200 Subject: automake: Handle LTLIBOBJS more specifically * bin/automake.in (handle_LIBOBJS_or_ALLOCA): Remove complex regexp substitution when handling LTLIBOBJS. --- bin/automake.in | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bin/automake.in b/bin/automake.in index d126836a0..cdea38856 100644 --- a/bin/automake.in +++ b/bin/automake.in @@ -2306,9 +2306,8 @@ sub handle_LIBOBJS_or_ALLOCA if $relative_dir ne '.'; define_variable ('LIBOBJDIR', "$dir", INTERNAL); $clean_files{"\$($var)"} = MOSTLY_CLEAN; - # If LTLIBOBJS is used, we must also clear LIBOBJS (which might - # be created by libtool as a side-effect of creating LTLIBOBJS). - $clean_files{"\$($var)"} = MOSTLY_CLEAN if $var =~ s/^LT//; + # libtool might create LIBOBJS as a side-effect of using LTLIBOBJS. + $clean_files{"\$(LIBOBJS)"} = MOSTLY_CLEAN if $var eq "LTLIBOBJS"; } else { -- cgit v1.2.1