summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJerry Kuch <jerryk@vmware.com>2010-11-11 09:24:12 +0000
committerJerry Kuch <jerryk@vmware.com>2010-11-11 09:24:12 +0000
commitc3385ea6980d564bb56cb3b91a0f27c6d6aa89b5 (patch)
tree12da96a84663dee16d2ba697538934d12ee30566 /Makefile
parent67ee034be7bd9e60bcc0cb780dba5a8fe23b2fae (diff)
downloadrabbitmq-server-c3385ea6980d564bb56cb3b91a0f27c6d6aa89b5.tar.gz
generate_deps takes file args from stdin
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 46f07376..87c99ba1 100644
--- a/Makefile
+++ b/Makefile
@@ -93,7 +93,7 @@ all: $(TARGETS)
$(DEPS_FILE): $(SOURCES) $(INCLUDES)
rm -f $@
- escript generate_deps $@ $(EBIN_DIR) $(SOURCES) $(INCLUDES)
+ echo $(SOURCES) $(INCLUDES) | escript generate_deps $@ $(EBIN_DIR)
$(EBIN_DIR)/rabbit.app: $(EBIN_DIR)/rabbit_app.in $(BEAM_TARGETS) generate_app
escript generate_app $(EBIN_DIR) $@ < $<