This only works if autoconf is happy, but it's better than nothing.
Fixes: #8259
Signed-off-by: Sage Weil <sage@inktank.com>
fi
@rm -rf src/test/virtualenv
+
+
+# NOTE: This only works when enough dependencies are installed for
+# autoconf to be happy. These commands should be run manually to
+# bootstrap.
+install-deps:
+ if test -x /usr/bin/apt-get; then \
+ sudo apt-get -y --no-install-recommends install `cat deps.deb.txt`; \
+ else \
+ sudo yum -y install `cat deps.rpm.txt`; \
+ fi