diff options
author | Filipe Brandenburger <filbranden@google.com> | 2015-12-07 13:53:02 -0800 |
---|---|---|
committer | Filipe Brandenburger <filbranden@google.com> | 2015-12-07 13:53:02 -0800 |
commit | c9811ac800df461b010909f343a2e0251b6b57d4 (patch) | |
tree | 6eda8548390861fd3517bd68e09808f9c1561463 | |
parent | 1941d19a5407ff9fecb6a6b02dfc8b3ca6de9bd8 (diff) | |
parent | abd544d5766963dc3f2b4304e753a859f3394a2c (diff) |
Merge pull request #2111 from evverx/remove-unnecessary-checking
build-sys: remove unnecessary check
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/Makefile.am b/Makefile.am index 48fb8208a4..917001fbc7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6212,19 +6212,13 @@ endif # # Require python when making dist # -.PHONY: dist-check-python dist-check-compat-libs dist-check-help +.PHONY: dist-check-python dist-check-help dist-check-python: if !HAVE_PYTHON @echo "*** python and python-lxml module must be installed and enabled in order to make dist" @false endif -dist-check-compat-libs: -if !ENABLE_COMPAT_LIBS - @echo "*** compat-libs must be enabled in order to make dist" - @false -endif - dist-check-help: $(rootbin_PROGRAMS) $(bin_PROGRAMS) for i in $(abspath $^); do \ if $$i --help | grep -v 'default:' | grep -E -q '.{80}.' ; then \ @@ -6233,7 +6227,7 @@ dist-check-help: $(rootbin_PROGRAMS) $(bin_PROGRAMS) exit 1; \ fi; done -dist: dist-check-python dist-check-compat-libs +dist: dist-check-python .PHONY: hwdb-update hwdb-update: |