summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@lshift.net>2009-06-12 16:05:46 +0100
committerMatthew Sackman <matthew@lshift.net>2009-06-12 16:05:46 +0100
commit527a72bf8e3a4782edd3483c62e31a7d4ef168ee (patch)
treee3cdda3d22ef64d68a6a599dbd5c04c3b16e0ced /Makefile
parent549f17cfa6f1b305991e4df6765f06d0f43001b8 (diff)
downloadrabbitmq-server-git-527a72bf8e3a4782edd3483c62e31a7d4ef168ee.tar.gz
cleandb is now an rm -rf and build depends not on mnesia
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4ff8573a23..367f153aa2 100644
--- a/Makefile
+++ b/Makefile
@@ -69,7 +69,7 @@ clean: cleandb
rm -f docs/*.[0-9].gz
cleandb: stop-node
- erl -mnesia dir '"$(RABBITMQ_MNESIA_DIR)"' -noshell -eval 'lists:foreach(fun file:delete/1, filelib:wildcard(mnesia:system_info(directory) ++ "/*")), halt().'
+ rm -rf $(RABBITMQ_MNESIA_DIR)/*
############ various tasks to interact with RabbitMQ ###################