Skip to content

Commit

Permalink
[FAB-1467] Allow make without docker
Browse files Browse the repository at this point in the history
See [FAB-1467].
The makefile shouldn't check for the existence of executables.
If one of the required executables isn't on the path, then we will
fail when we attempt to execute it and if a particular make target
doesn't require the executable, then it will still pass appropriately.

Change-Id: Ie5c80b56848aec428676b02d23f3b3558df18ce8
Signed-off-by: Keith Smith <[email protected]>
  • Loading branch information
Keith Smith committed Apr 13, 2017
1 parent ee34334 commit 1c68d07
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ else
PROJECT_VERSION=$(BASE_VERSION)
endif

# Check that all dependencies are installed
EXECUTABLES = go docker git curl
K := $(foreach exec,$(EXECUTABLES),\
$(if $(shell which $(exec)),some string,$(error "No $(exec) in PATH: Check dependencies")))

ARCH=$(shell uname -m)
ifeq ($(ARCH),s390x)
PGVER=9.4
Expand Down

0 comments on commit 1c68d07

Please sign in to comment.