diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-03 23:54:55 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-03 23:54:55 -0700 |
commit | df71b4f7f9bfc1ab273b9599e014e68d5fe9d144 (patch) | |
tree | 65746578af74c620ea0abe301028884fa2e855c3 /Makefile | |
parent | 230f544e877641666f8c3718ac4563294c2b305e (diff) | |
parent | 9f0bb90d161edf8c43f5261d12bf83f14eb02ff4 (diff) | |
download | git-df71b4f7f9bfc1ab273b9599e014e68d5fe9d144.tar.gz git-df71b4f7f9bfc1ab273b9599e014e68d5fe9d144.tar.xz |
Merge branch 'jc/symref'
* jc/symref:
core.prefersymlinkrefs: use symlinks for .git/HEAD
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -28,8 +28,8 @@ all: # # Define NO_SETENV if you don't have setenv in the C library. # -# Define USE_SYMLINK_HEAD if you want .git/HEAD to be a symbolic link. -# Don't enable it on Windows. +# Define NO_SYMLINK_HEAD if you never want .git/HEAD to be a symbolic link. +# Enable it on Windows. By default, symrefs are still used. # # Define PPC_SHA1 environment variable when running make to make use of # a bundled SHA1 routine optimized for PowerPC. @@ -264,6 +264,7 @@ ifeq ($(uname_O),Cygwin) NO_D_TYPE_IN_DIRENT = YesPlease NO_D_INO_IN_DIRENT = YesPlease NO_STRCASESTR = YesPlease + NO_SYMLINK_HEAD = YesPlease NEEDS_LIBICONV = YesPlease # There are conflicting reports about this. # On some boxes NO_MMAP is needed, and not so elsewhere. @@ -387,6 +388,9 @@ endif ifdef NO_D_INO_IN_DIRENT ALL_CFLAGS += -DNO_D_INO_IN_DIRENT endif +ifdef NO_SYMLINK_HEAD + ALL_CFLAGS += -DNO_SYMLINK_HEAD +endif ifdef NO_STRCASESTR COMPAT_CFLAGS += -DNO_STRCASESTR COMPAT_OBJS += compat/strcasestr.o |