diff options
author | unknown <lenz@mysql.com> | 2004-01-21 17:42:41 +0100 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2004-01-21 17:42:41 +0100 |
commit | 17fdccce28af1a99f755c4422e81bbaaaef1b619 (patch) | |
tree | 964cadd7b2694820671c93a8a66576247414cb16 /Build-tools | |
parent | 837a83c80ba39f5c5d5e58ceb201550a035bfe3b (diff) | |
download | mariadb-git-17fdccce28af1a99f755c4422e81bbaaaef1b619.tar.gz |
- remove unnecessary code from Do-rpm to delete the source tarball and
spec file after the build as RPM has its own option for this
Build-tools/Do-rpm:
- remove unnecessary code to delete the source tarball and spec file
after the build as RPM has its own option for this
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Do-rpm | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/Build-tools/Do-rpm b/Build-tools/Do-rpm index 3473bcb1f5f..7da8b022031 100755 --- a/Build-tools/Do-rpm +++ b/Build-tools/Do-rpm @@ -115,10 +115,12 @@ if (defined $opt_log) if (-x "/usr/bin/rpmbuild") { $RPM= "/usr/bin/rpmbuild"; + $RMSOURCE= "--rmsource --rmspec"; } else { $RPM= "/bin/rpm"; + $RMSOURCE= "--rmspec"; } if ($RPM) @@ -177,7 +179,7 @@ $ENV{MYSQL_BUILD_CXX}=$opt_cxx if ($opt_cxx); $command= "$RPM"; $command.= " -v" if ($opt_verbose); $command.= " -ba"; -$command.= " --clean" if $opt_clean; +$command.= " --clean $RMSOURCE" if $opt_clean; $command.= " $SPECDIR/"; $command.= basename($SPECFILE); &logger("Building RPM."); @@ -198,19 +200,6 @@ $command.= " $RPMDIR/$RPMARCH/MySQL*$VERSION*.$RPMARCH.rpm $PWD"; &logger("Moving binary RPMs to current dir."); &run_command($command, "Error moving binary RPMs!"); -# -# Clean up -# -if ($opt_clean) -{ - &logger("Removing spec file and source package"); - unless ($opt_dry_run) - { - unlink("$SPECDIR/" . basename($SPECFILE)); - unlink("$SOURCEDIR/$SOURCEFILE"); - } -} - &logger("SUCCESS: RPM files successfully created.") unless ($opt_dry_run); exit 0; |