kbuild: fix mkspec to cleanup RPM_BUILD_ROOT
The contents of the %clean section in mkspec is currently commented out leaving RPM_BUILD_ROOT and its contents on the build machine. This patch removes it once the rpm build process is complete. Signed-off-by: Josh Hunt <josh@scalex86.org> Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
parent
d15bd1067b
commit
a2ebcc7a86
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ echo "%endif"
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "%clean"
|
echo "%clean"
|
||||||
echo '#echo -rf $RPM_BUILD_ROOT'
|
echo 'rm -rf $RPM_BUILD_ROOT'
|
||||||
echo ""
|
echo ""
|
||||||
echo "%files"
|
echo "%files"
|
||||||
echo '%defattr (-, root, root)'
|
echo '%defattr (-, root, root)'
|
||||||
|
|
Loading…
Reference in a new issue