removing --skip-build option, because it failed on machines where there
was no build/ directory
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index d2e0164..b7d7eb4 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ install:
for t in tests/*; do cp -a $$t $(PREFIX)$(TEST_DIR); done
install -d $(PREFIX)$(AUTOTEST_DIR)/client/bin
install -m 0644 lib/autotest/site_utils.py $(PREFIX)$(AUTOTEST_DIR)/client/bin
- ( cd lib/python; python setup.py install -O1 --skip-build --root $(PREFIX)/ )
+ ( cd lib/python; python setup.py install -O1 --root $(PREFIX)/ )
build:
@echo no build necessary
--
1.6.2.5