summaryrefslogtreecommitdiff
path: root/ltmain.sh
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2001-10-11 01:51:26 +0200
committerKevin Ryde <user42@zip.com.au>2001-10-11 01:51:26 +0200
commitb38bcbfa819d5f46259b583e45bc883ecebc0ef7 (patch)
tree7e9c3f0e4460390b45f39cca129e1702011d6250 /ltmain.sh
parent59d9cbb110193fb2b40f03562d27e8ef1c55b0ef (diff)
downloadgmp-b38bcbfa819d5f46259b583e45bc883ecebc0ef7.tar.gz
* ltmain.sh: Send some rm errors to /dev/null, helps during compiles
on Solaris 2.7 and HP-UX 10.
Diffstat (limited to 'ltmain.sh')
-rw-r--r--ltmain.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ltmain.sh b/ltmain.sh
index 732469ea0..dcbf55854 100644
--- a/ltmain.sh
+++ b/ltmain.sh
@@ -654,7 +654,7 @@ EOF
command="$command -o $lobj"
fi
- $run $rm "$lobj" "$output_obj"
+ $run $rm "$lobj" "$output_obj" 2>/dev/null
$show "$command"
if $run eval "$command"; then :
@@ -725,7 +725,7 @@ EOF
# Suppress compiler output if we already did a PIC compilation.
command="$command$suppress_output"
- $run $rm "$obj" "$output_obj"
+ $run $rm "$obj" "$output_obj" 2>/dev/null
$show "$command"
if $run eval "$command"; then :
else