mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-20 17:52:50 +00:00
setup: remove specific checks for twisted dependency in makefile
Now that the twisted dependency is handled by the automatic dependency mechanism.
This commit is contained in:
parent
99d5d2335d
commit
a097f45243
15
Makefile
15
Makefile
@ -113,7 +113,7 @@ endif
|
||||
|
||||
# TESTING
|
||||
|
||||
.PHONY: check-all-deps check-twisted-dep $(CHECK_PYWIN32_DEP) signal-error-deps, signal-error-twisted-dep, signal-error-pywin32-dep, test test-figleaf figleaf-output
|
||||
.PHONY: check-all-deps $(CHECK_PYWIN32_DEP) signal-error-deps, signal-error-pywin32-dep, test test-figleaf figleaf-output
|
||||
|
||||
|
||||
signal-error-deps:
|
||||
@ -124,14 +124,6 @@ signal-error-deps:
|
||||
@echo
|
||||
exit 1
|
||||
|
||||
signal-error-twisted-dep:
|
||||
@echo
|
||||
@echo
|
||||
@echo "ERROR: Twisted is not installed. Please see docs/install.html for details."
|
||||
@echo
|
||||
@echo
|
||||
exit 1
|
||||
|
||||
signal-error-pywin32-dep:
|
||||
@echo
|
||||
@echo
|
||||
@ -153,16 +145,13 @@ check-auto-deps:
|
||||
|
||||
check-all-deps: check-deps check-auto-deps
|
||||
|
||||
check-twisted-dep:
|
||||
@$(PP) $(PYTHON) -c 'import twisted, zope.interface' || $(MAKE) signal-error-twisted-dep
|
||||
|
||||
check-pywin32-dep:
|
||||
@$(PP) $(PYTHON) -c 'import win32process' || $(MAKE) signal-error-pywin32-dep
|
||||
|
||||
check-pyopenssl-dep:
|
||||
@$(PP) $(PYTHON) -c 'import OpenSSL' || $(MAKE) signal-error-pyopenssl-dep
|
||||
|
||||
check-deps: check-twisted-dep $(CHECK_PYWIN32_DEP) check-pyopenssl-dep
|
||||
check-deps: $(CHECK_PYWIN32_DEP) check-pyopenssl-dep
|
||||
|
||||
.checked-deps:
|
||||
$(MAKE) check-all-deps
|
||||
|
Loading…
x
Reference in New Issue
Block a user