diff options
| author | Matthew Sackman <matthew@lshift.net> | 2009-06-12 16:05:46 +0100 |
|---|---|---|
| committer | Matthew Sackman <matthew@lshift.net> | 2009-06-12 16:05:46 +0100 |
| commit | 527a72bf8e3a4782edd3483c62e31a7d4ef168ee (patch) | |
| tree | e3cdda3d22ef64d68a6a599dbd5c04c3b16e0ced | |
| parent | 549f17cfa6f1b305991e4df6765f06d0f43001b8 (diff) | |
| download | rabbitmq-server-git-527a72bf8e3a4782edd3483c62e31a7d4ef168ee.tar.gz | |
cleandb is now an rm -rf and build depends not on mnesia
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | packaging/debs/Debian/debian/control | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 ################### diff --git a/packaging/debs/Debian/debian/control b/packaging/debs/Debian/debian/control index 216360725d..03f5e3b50f 100644 --- a/packaging/debs/Debian/debian/control +++ b/packaging/debs/Debian/debian/control @@ -2,7 +2,7 @@ Source: rabbitmq-server Section: net Priority: extra Maintainer: Tony Garnock-Jones <tonyg@rabbitmq.com> -Build-Depends: cdbs, debhelper (>= 5), erlang-nox, erlang-dev, python-simplejson +Build-Depends: cdbs, debhelper (>= 5), erlang-dev, python-simplejson Standards-Version: 3.8.0 Package: rabbitmq-server |
