diff options
-rwxr-xr-x | Build-tools/Do-rpm | 7 | ||||
-rw-r--r-- | support-files/mysql.spec.sh | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/Build-tools/Do-rpm b/Build-tools/Do-rpm index 046ba93a1dd..68abeaa9bfa 100755 --- a/Build-tools/Do-rpm +++ b/Build-tools/Do-rpm @@ -5,6 +5,7 @@ function copy_to_bmachine { if [ x$local_build = x1 ]; then + rm -f $2 cp $1 $2 else scp $1 $owner@$bmachine:$2 @@ -14,6 +15,7 @@ function copy_to_bmachine function copy_from_bmachine { if [ x$local_build = x1 ]; then + rm -f $2 cp $1 $2 else scp $owner@$bmachine:$1 $2 @@ -105,10 +107,11 @@ if [ ! -f "$tarball" ]; then exit 1 fi -echo "Building RPM for MySQL version $VER on $bmachine" - log=$logdir/Log-RPM-`date +%y%m%d-%H%M` +echo "Building RPM for MySQL version $VER on $bmachine" +echo "Details in $log" + ( set -x # Copy MySQL source and spec files diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index e62b8e84f9b..fcce92def24 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -148,7 +148,7 @@ Summary(pt_BR): MySQL - Medições de desempenho Group(pt_BR): Aplicações/Banco_de_Dados Obsoletes: embedded -%description devel +%description embedded This package contains the MySQL server as library. %{see_base} |