summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-10-29 21:08:41 +0000
committerMorgan Deters <mdeters@gmail.com>2010-10-29 21:08:41 +0000
commit4d305551927b2a667acaa796fb86d86aa6364b01 (patch)
tree5bac9863dfaae7b521887c1a8cdea5120cc8c267 /Makefile
parent1257be7a6d384bbf11cb4a2aa6c8281fe4bba790 (diff)
portability updates to build system
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bf95f419e..19cd9712b 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ builddir = builds
.PHONY: _default_build_ all
_default_build_: all
all %:
- @if test -e $(builddir); then \
+ @if test -d $(builddir); then \
echo cd $(builddir); \
cd $(builddir); \
echo $(MAKE) $@; \
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback