Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
WAF: Clean out/Release/deps/uv before build
  • Loading branch information
ry committed Sep 29, 2011
1 parent 005448b commit 84641fc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion wscript
Expand Up @@ -647,9 +647,11 @@ def uv_cmd(bld, variant):
#
cmd = 'cp -r ' + sh_escape(srcdir) + '/* ' + sh_escape(blddir)
if not sys.platform.startswith('win32'):
cmd += ' && if [[ -z "$NODE_MAKE" ]]; then NODE_MAKE=make; fi; $NODE_MAKE -C ' + sh_escape(blddir)
cmd += ' && if [[ -z "$NODE_MAKE" ]]; then NODE_MAKE=make; fi; '
cmd += '$NODE_MAKE -C ' + sh_escape(blddir)
else:
cmd += ' && make -C ' + sh_escape(blddir)
cmd += ' clean all'
return cmd


Expand Down

0 comments on commit 84641fc

Please sign in to comment.