Commit a62c5b798e37fb267b9e802387bf75d68e254457

Stefan Sperling 2020-01-04T18:54:11

more portable string comparison in Makefile.inc; patch by Edgar Pettijohn

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/Makefile.inc b/Makefile.inc
index 3c61ffe..bb6ed69 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -4,7 +4,7 @@ CFLAGS += -Werror -Wall -Wstrict-prototypes -Wunused-variable
 #CFLAGS += -DGOT_NO_OBJ_CACHE
 #CFLAGS += -DGOT_OBJ_CACHE_DEBUG
 
-.if ${GOT_RELEASE} == "Yes"
+.if "${GOT_RELEASE}" == "Yes"
 PREFIX ?= /usr/local
 BINDIR ?= ${PREFIX}/bin
 LIBEXECDIR ?= ${PREFIX}/libexec