Browse Source

build: don't try to `ls -lh` executables that don't exist

Avoids `ls: cannot access build/debug/node_g: No such file or directory`.
Not an actual error but it confuses people.
v0.7.4-release
Ben Noordhuis 14 years ago
parent
commit
ad31e5af56
  1. 4
      Makefile

4
Makefile

@ -11,8 +11,8 @@ web_root = ryan@nodejs.org:~/web/nodejs.org/
export NODE_MAKE := $(MAKE)
all: program
@-ls -lh build/default/node
@-ls -lh build/debug/node_g || echo ""
@-[ -f build/default/node ] && ls -lh build/default/node
@-[ -f build/debug/node_g ] && ls -lh build/debug/node_g
all-progress:
@$(WAF) -p build

Loading…
Cancel
Save