From 951e10f27220fe9bed6862ff61058328866a562e Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Tue, 3 Mar 2020 08:21:14 -0600 Subject: [PATCH] Address #292 Faulty Makefile fallback. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3ea844e4..51d9d1e4 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ PREFIX?=/usr/local INCLUDEDIR?=$(PREFIX)/include BINDIR?=$(PREFIX)/bin LIBDIR?=$(PREFIX)/lib -JANET_BUILD?="\"$(shell git log --pretty=format:'%h' -n 1 || 'local')\"" +JANET_BUILD?="\"$(shell git log --pretty=format:'%h' -n 1 || echo local)\"" CLIBS=-lm -lpthread JANET_TARGET=build/janet JANET_LIBRARY=build/libjanet.so