diff options
author | unknown <ingo@mysql.com> | 2005-09-29 15:09:05 +0200 |
---|---|---|
committer | unknown <ingo@mysql.com> | 2005-09-29 15:09:05 +0200 |
commit | 7b8a6e458e6bcd3512b2ac2e88e8e02e7f2b4568 (patch) | |
tree | 96c81109831f6d788747c47c38cb0ae1f45e73c2 | |
parent | 48838170c7d160b618713a698e33884e3fb10c98 (diff) | |
parent | 7af7e616043c98c0069c2df727e4c552bb670c91 (diff) | |
download | mariadb-git-7b8a6e458e6bcd3512b2ac2e88e8e02e7f2b4568.tar.gz |
Merge mysql.com:/home/mydev/mysql-4.1
into mysql.com:/home/mydev/mysql-4.1-4100
-rw-r--r-- | support-files/mysql.spec.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index af9abd2fce1..0f597e1dda5 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -501,7 +501,7 @@ fi # Clean up the BuildRoot %clean -[ "$RBR" != "/" ] && [ -d $RBR ] && rm -rf $RBR; +[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT; %files server %defattr(-,root,root,0755) @@ -668,6 +668,11 @@ fi # itself - note that they must be ordered by date (important when # merging BK trees) %changelog +* Thu Sep 29 2005 Lenz Grimmer <lenz@mysql.com> + +- fixed the removing of the RPM_BUILD_ROOT in the %clean section (the + $RBR variable did not get expanded, thus leaving old build roots behind) + * Thu Aug 04 2005 Lenz Grimmer <lenz@mysql.com> - Fixed the creation of the mysql user group account in the postinstall |