diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-08-29 12:51:14 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-29 14:26:14 -0700 |
commit | 104ff34a742672b360b1da2b7d7668a14da551c2 (patch) | |
tree | de4fd8b6a327a67325c7db8140c105078e5b9ba9 /Makefile | |
parent | c9b0597d3d3168e29f68b0e82fa755ee165f6b72 (diff) | |
download | git-104ff34a742672b360b1da2b7d7668a14da551c2.tar.gz git-104ff34a742672b360b1da2b7d7668a14da551c2.tar.xz |
Makefile: fix typo
We checked NO_SETENV instead of NO_UNSETENV to decide if unsetenv
is available.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |