Merge pull request #1594 from LuaAndC/sid-openssl

fix detection of openssl in Debian Sid
This commit is contained in:
Boris Nagaev 2016-12-15 03:29:42 -08:00 committed by GitHub
commit e26161b861
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ override MXE_PLUGIN_DIRS += $(realpath $(TOP_DIR)/plugins/native/$(OS_SHORT_NAME
.PHONY: check-requirements
define CHECK_REQUIREMENT
@if ! $(1) --help &>/dev/null; then \
@if ! ( $(1) --help || $(1) help ) &>/dev/null; then \
echo 'Missing requirement: $(1)'; \
touch check-requirements-failed; \
fi