diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2015-12-07 07:02:37 +0000 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2015-12-07 07:05:42 +0000 |
commit | abd544d5766963dc3f2b4304e753a859f3394a2c (patch) | |
tree | f98083ac3d9500218734ff441b3f7da1d836f3fa /Makefile.am | |
parent | 1fbcad80f0760976193303fcb5c88c8201c4f27e (diff) |
build-sys: remove unnecessary check
added: 65adc982d
obsoleted: 2c8849add
Diffstat (limited to 'Makefile.am')
-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: |