summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorunknown <joerg@trift2.>2007-12-28 15:44:35 +0100
committerunknown <joerg@trift2.>2007-12-28 15:44:35 +0100
commit14c3769b3ae49882de3266ad6feed3f1dddbdd81 (patch)
treeb383628d2d13b44b0865dcdf1fd983cfa9bde371 /scripts
parent9179b9a47834e35ae23cae0788ff16a522de1a3e (diff)
parent1b0a18a090f44dec2b4117da5ad78efefcb950d9 (diff)
downloadmariadb-git-14c3769b3ae49882de3266ad6feed3f1dddbdd81.tar.gz
Merge trift2.:/MySQL/M50/bug33536-5.0
into trift2.:/MySQL/M50/push-5.0
Diffstat (limited to 'scripts')
-rw-r--r--scripts/make_binary_distribution.sh10
1 files changed, 6 insertions, 4 deletions
diff --git a/scripts/make_binary_distribution.sh b/scripts/make_binary_distribution.sh
index a87bb03526d..8598a022669 100644
--- a/scripts/make_binary_distribution.sh
+++ b/scripts/make_binary_distribution.sh
@@ -400,11 +400,13 @@ BASE=$BASE2
#
if [ x"@GXX@" = x"yes" ] ; then
- gcclib=`@CC@ @CFLAGS@ --print-libgcc-file`
- if [ $? -ne 0 ] ; then
- echo "Warning: Couldn't find libgcc.a!"
- else
+ gcclib=`@CC@ @CFLAGS@ --print-libgcc-file 2>/dev/null` || true
+ if [ -z "$gcclib" ] ; then
+ echo "Warning: Compiler doesn't tell libgcc.a!"
+ elif [ -f "$gcclib" ] ; then
$CP $gcclib $BASE/lib/libmygcc.a
+ else
+ echo "Warning: Compiler result '$gcclib' not found / no file!"
fi
fi