diff options
author | unknown <joerg@mysql.com> | 2005-05-25 16:24:07 +0200 |
---|---|---|
committer | unknown <joerg@mysql.com> | 2005-05-25 16:24:07 +0200 |
commit | ce11270fc1aad781f066f33d28328bde31487dca (patch) | |
tree | 17ab447eb98bb63691900cf0f7698a170dda5477 /support-files | |
parent | dae940d11e2c890d12352e861b45593dbebe36d6 (diff) | |
download | mariadb-git-ce11270fc1aad781f066f33d28328bde31487dca.tar.gz |
Added a missing "make clean" to the RPM "spec" file which had caused the original 4.1.12 RPMs to be broken.
(bug#10674, bug#10681)
support-files/mysql.spec.sh:
Added a missing "make clean" which had caused the original 4.1.12 RPMs to be broken.
(bug#10674, bug#10681)
Diffstat (limited to 'support-files')
-rw-r--r-- | support-files/mysql.spec.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index 8b880c32051..2354b44f4fa 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -299,6 +299,9 @@ fi (cd libmysql/.libs; tar cf $RBR/shared-libs.tar *.so*) (cd libmysql_r/.libs; tar rf $RBR/shared-libs.tar *.so*) +# Now clean up +make clean + # RPM:s destroys Makefile.in files, so we generate them here # aclocal; autoheader; aclocal; automake; autoconf # (cd innobase && aclocal && autoheader && aclocal && automake && autoconf) @@ -584,6 +587,10 @@ fi # itself - note that they must be ordered by date (important when # merging BK trees) %changelog +* Wed May 25 2005 Joerg Bruehe <joerg@mysql.com> + +- Added a "make clean" between separate calls to "BuildMySQL". + * Wed Apr 13 2005 Lenz Grimmer <lenz@mysql.com> - removed the MySQL manual files (html/ps/texi) - they have been removed |