Commit 443048f6 authored by lenz@mysql.com's avatar lenz@mysql.com

- 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)
parent d005299a
...@@ -425,7 +425,7 @@ fi ...@@ -425,7 +425,7 @@ fi
# Clean up the BuildRoot # Clean up the BuildRoot
%clean %clean
[ "$RBR" != "/" ] && [ -d $RBR ] && rm -rf $RBR; [ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT;
%files server %files server
%defattr(-,root,root,0755) %defattr(-,root,root,0755)
...@@ -562,6 +562,11 @@ fi ...@@ -562,6 +562,11 @@ fi
# itself - note that they must be ordered by date (important when # itself - note that they must be ordered by date (important when
# merging BK trees) # merging BK trees)
%changelog %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> * Thu Aug 04 2005 Lenz Grimmer <lenz@mysql.com>
- Fixed the creation of the mysql user group account in the postinstall - Fixed the creation of the mysql user group account in the postinstall
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment