Merge pull request #3843 from ghjm/devel

Can't use bash syntax since make uses /bin/sh
This commit is contained in:
Graham Mainwaring
2016-11-02 14:01:12 -04:00
committed by GitHub

View File

@@ -239,7 +239,7 @@ clean: clean-rpm clean-deb clean-ui clean-tar clean-packer clean-bundle
# convenience target to assert environment variables are defined
guard-%:
@if [ "${${*}}" == "" ]; then \
@if [ "$${$*}" = "" ]; then \
echo "The required environment variable '$*' is not set"; \
exit 1; \
fi