diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-08-23 15:13:07 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-08-23 15:13:09 -0700 |
commit | 42529ddfb500cc7df3601c3b5f1d1da9f787d08e (patch) | |
tree | bee841623ee9a2e403ba57f850a43145a8be7481 /Makefile | |
parent | ea156359e941a671e1773c5cb9d4d46933618af8 (diff) | |
download | node-new-42529ddfb500cc7df3601c3b5f1d1da9f787d08e.tar.gz |
waf: Don't build out/Debug/node_g - just out/Debug/node
This is to match how GYP does it.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ export NODE_MAKE := $(MAKE) all: program @-[ -f out/Release/node ] && ls -lh out/Release/node - @-[ -f out/Debug/node_g ] && ls -lh out/Debug/node_g + @-[ -f out/Debug/node ] && ls -lh out/Debug/node all-progress: @$(WAF) -p build |