Author: cwittich
Date: Mon Mar 10 13:16:10 2008
New Revision: 32641
URL:
http://svn.reactos.org/svn/reactos?rev=3D32641&view=3Drev
Log:
build tools after deleting unversioned files
Modified:
trunk/tools/buildbot/scripts/Linux/makeclean
Modified: trunk/tools/buildbot/scripts/Linux/makeclean
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/buildbot/scripts/Linux/=
makeclean?rev=3D32641&r1=3D32640&r2=3D32641&view=3Ddiff
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
--- trunk/tools/buildbot/scripts/Linux/makeclean (original)
+++ trunk/tools/buildbot/scripts/Linux/makeclean Mon Mar 10 13:16:10 2008
@@ -20,18 +20,19 @@
echo ' * CD images'
rm -f *.iso
=
- echo -e '\n* Compiling tools...'
- ../../build clean
- echo -e '* Done compiling tools.'
-
echo -e '\n* Deleting unversioned files from the source...'
../../svn-clean --exclude '^.buildbot-sourcedata'
=
if [ $# -eq 1 ]; then
+ echo -e '\n* Recreating config.rbuild...'
if [ "${1}" =3D "rel" ]; then
cat config.template.rbuild | sed 's/"DBG"
value=3D"1"/"DBG" va=
lue=3D"0"/' > config.rbuild
fi
fi
=
+ echo -e '\n* Compiling tools...'
+ ../../build clean
+ echo -e '* Done compiling tools.'
+
exit 0
)"