From 104ff34a742672b360b1da2b7d7668a14da551c2 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Tue, 29 Aug 2006 12:51:14 +0200 Subject: [PATCH] Makefile: fix typo We checked NO_SETENV instead of NO_UNSETENV to decide if unsetenv is available. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a608476405..05bd77f967 100644 --- a/Makefile +++ b/Makefile @@ -496,7 +496,7 @@ ifdef NO_SETENV COMPAT_CFLAGS += -DNO_SETENV COMPAT_OBJS += compat/setenv.o endif -ifdef NO_SETENV +ifdef NO_UNSETENV COMPAT_CFLAGS += -DNO_UNSETENV COMPAT_OBJS += compat/unsetenv.o endif -- GitLab