Skip to content

Commit

Permalink
Makefile: fail immediately if find-meteor-dev-bundle.sh fails.
Browse files Browse the repository at this point in the history
Fixes #3360.
  • Loading branch information
zenhack committed Jul 5, 2020
1 parent 3415067 commit 1325370
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ EKAM=ekam
# (as of Jan 2020), notably Debian Sid, Fedora 30 and Archlinux. We're not
# entirely sure what changed, but this seems like a backwards incompatibility
# in libstdc++. See also issue #3171.
METEOR_DEV_BUNDLE=$(shell ./find-meteor-dev-bundle.sh)
METEOR_DEV_BUNDLE:=$(shell ./find-meteor-dev-bundle.sh)
ifneq '$(.SHELLSTATUS)' '0'
$(error Failed to find meteor dev bundle; have you installed Meteor?)
endif
METEOR_SPK_VERSION=0.5.1
METEOR_SPK=$(PWD)/meteor-spk-$(METEOR_SPK_VERSION)/meteor-spk
NODEJS=$(METEOR_DEV_BUNDLE)/bin/node
Expand Down

0 comments on commit 1325370

Please sign in to comment.