summaryrefslogtreecommitdiff
path: root/support-files
diff options
context:
space:
mode:
authorlenz@mysql.com <>2005-09-29 13:55:54 +0200
committerlenz@mysql.com <>2005-09-29 13:55:54 +0200
commit443048f61cab6e2a98603cb6ea31d9d5ca54a147 (patch)
tree5ddc2b66a07c84a709ee7da7800514309303f19b /support-files
parentd005299a5714f3c56ad752ce5d108bb36169cdc9 (diff)
downloadmariadb-git-443048f61cab6e2a98603cb6ea31d9d5ca54a147.tar.gz
- fixed the removing of the RPM_BUILD_ROOT in the %clean section of the RPM
spec file (the $RBR variable did not get expanded, thus leaving old build roots behind)
Diffstat (limited to 'support-files')
-rw-r--r--support-files/mysql.spec.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh
index 325ebdf2c01..6104b7a4882 100644
--- a/support-files/mysql.spec.sh
+++ b/support-files/mysql.spec.sh
@@ -425,7 +425,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)
@@ -562,6 +562,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