Fixed test on commit id to avoid minor build error message when building on non windows systems from a zip download

This commit is contained in:
Mark Pizzolato 2013-01-09 08:01:19 -08:00
parent 7b6f7a9871
commit b28b01cf7d

View file

@ -296,7 +296,7 @@ ifeq ($(WIN32),) #*nix Environments (&& cygwin)
ifneq (binexists,$(shell if $(TEST) -e BIN; then echo binexists; fi))
MKDIRBIN = mkdir -p BIN
endif
ifneq (,$(shell cat .git-commit-id))
ifneq (,$(shell if $(TEST) -e .git-commit-id; then echo commit-id-exists; fi))
GIT_COMMIT_ID=$(shell cat .git-commit-id)
endif
else