mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-03-01 15:25:27 +08:00
* m4/ltmain.in: Only check precious_files_regex if it is not empty.
This commit is contained in:
parent
65c6799bfd
commit
e666f98829
@ -1,3 +1,7 @@
|
||||
2004-03-14 Scott James Remnant <scott@netsplit.com>
|
||||
|
||||
* m4/ltmain.in: Only check precious_files_regex if it is not empty.
|
||||
|
||||
2004-03-14 Gary V. Vaughan <gary@gnu.org>
|
||||
|
||||
* doc/libtool.texi (Autoconf and LTLIBOBJS): The correct version
|
||||
|
@ -3216,9 +3216,11 @@ EOF
|
||||
*.$objext)
|
||||
;;
|
||||
$output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*)
|
||||
if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
|
||||
then
|
||||
continue
|
||||
if test "X$precious_files_regex" != "X"; then
|
||||
if echo $p | $EGREP -e "$precious_files_regex" >/dev/null 2>&1
|
||||
then
|
||||
continue
|
||||
fi
|
||||
fi
|
||||
removelist="$removelist $p"
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user