From: Josh Hunt Date: Sun, 22 Feb 2009 18:54:55 +0000 (-0800) Subject: kbuild: fix mkspec to cleanup RPM_BUILD_ROOT X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=a2ebcc7a863761b6d59a4183c600edf5af63b8d2;p=linux-2.6-omap-h63xx.git 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 Signed-off-by: Sam Ravnborg --- diff --git a/scripts/package/mkspec b/scripts/package/mkspec index ee448cdc6a2..3d93f8c8125 100755 --- a/scripts/package/mkspec +++ b/scripts/package/mkspec @@ -96,7 +96,7 @@ echo "%endif" echo "" echo "%clean" -echo '#echo -rf $RPM_BUILD_ROOT' +echo 'rm -rf $RPM_BUILD_ROOT' echo "" echo "%files" echo '%defattr (-, root, root)'