Author: cwittich Date: Mon May 12 09:50:25 2008 New Revision: 33471
URL: http://svn.reactos.org/svn/reactos?rev=33471&view=rev Log: escape " to get release builds instead of debug builds when requested
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/makecl... ============================================================================== --- trunk/tools/buildbot/scripts/Linux/makeclean [iso-8859-1] (original) +++ trunk/tools/buildbot/scripts/Linux/makeclean [iso-8859-1] Mon May 12 09:50:25 2008 @@ -27,11 +27,11 @@ rm -rf "reactos." echo ' * CD images' rm -f *.iso - + if [ $# -eq 1 ]; then - echo -e '\n* Recreating config.rbuild...' if [ "${1}" = "rel" ]; then - cat config.template.rbuild | sed 's/"DBG" value="1"/"DBG" value="0"/' > config.rbuild + echo -e '\n* Recreating config.rbuild...' + cat config.template.rbuild | sed 's/"DBG" value="1"/"DBG" value="0"/' > config.rbuild fi fi