aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBrandon Casey <drafnel@gmail.com>2009-05-27 21:17:05 -0500
committerJunio C Hamano <gitster@pobox.com>2009-05-28 23:55:14 -0700
commitefc07debaf60f5aa81bef78dc3219962ba88c3b8 (patch)
tree929d843c33c1817c5c2a034fd2f4b5c7c6cfe61f /Makefile
parent33fd7169ed6658e898b414a66aefaad16b404ec5 (diff)
downloadgit-efc07debaf60f5aa81bef78dc3219962ba88c3b8.tar.gz
git-efc07debaf60f5aa81bef78dc3219962ba88c3b8.tar.xz
Makefile: use /usr/ucb/install on SunOS platforms rather than ginstall
We can avoid a GNU dependency by using /usr/ucb/install. Signed-off-by: Brandon Casey <drafnel@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index eaae45db7..ba780775c 100644
--- a/Makefile
+++ b/Makefile
@@ -715,7 +715,7 @@ ifeq ($(uname_S),SunOS)
NO_C99_FORMAT = YesPlease
NO_STRTOUMAX = YesPlease
endif
- INSTALL = ginstall
+ INSTALL = /usr/ucb/install
TAR = gtar
BASIC_CFLAGS += -D__EXTENSIONS__
endif