diff options
author | Brandon Casey <drafnel@gmail.com> | 2009-05-27 21:17:05 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-05-28 23:55:14 -0700 |
commit | efc07debaf60f5aa81bef78dc3219962ba88c3b8 (patch) | |
tree | 929d843c33c1817c5c2a034fd2f4b5c7c6cfe61f | |
parent | Update draft release notes to 1.6.4 (diff) | |
download | tgif-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>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |