From c153b3ec15d62519f01bb100f3c6b582dd3c3376 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Tue, 24 Sep 2002 20:07:43 +0000 Subject: [PATCH] * automake.in (handle_single_transform_list): Revert the change from 2002-09-22. We need to erase .libs/ in the object directory in addition to the library directory. --- ChangeLog | 4 ++++ automake.in | 3 +++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 74ae65bd0..22c6eb7a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2002-09-24 Alexandre Duret-Lutz + * automake.in (handle_single_transform_list): Revert the change + from 2002-09-22. We need to erase .libs/ in the object directory + in addition to the library directory. + * tests/target-cflags.test: Build in `build/', not `obj/' because `obj/' is special to BSD make. diff --git a/automake.in b/automake.in index f192f0fd4..270f1491c 100755 --- a/automake.in +++ b/automake.in @@ -2542,6 +2542,9 @@ sub handle_single_transform_list ($$$$@) { (my $xobj = $object) =~ s,lo$,\$(OBJEXT),; $compile_clean_files{$xobj} = MOSTLY_CLEAN; + + # Remove any libtool object in this directory. + $libtool_clean_directories{$directory} = 1; } push (@dep_list, require_build_directory ($directory)); -- 2.47.2