diff options
author | lenz@mysql.com <> | 2005-09-29 13:57:41 +0200 |
---|---|---|
committer | lenz@mysql.com <> | 2005-09-29 13:57:41 +0200 |
commit | 68e6b0e21d923427a433fb4c32cbbd500a7064cd (patch) | |
tree | 54602a8e2bdc418a99d4dda53c6a9ea1f79dc573 | |
parent | f9762c47d084037e99cd631e66b7473dfd7b0669 (diff) | |
parent | 443048f61cab6e2a98603cb6ea31d9d5ca54a147 (diff) | |
download | mariadb-git-68e6b0e21d923427a433fb4c32cbbd500a7064cd.tar.gz |
Merge mysql.com:/space/my/mysql-4.0 into mysql.com:/space/my/mysql-4.1
-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 |