From: Brandon Casey Date: Thu, 28 May 2009 02:17:05 +0000 (-0500) Subject: Makefile: use /usr/ucb/install on SunOS platforms rather than ginstall X-Git-Tag: v1.6.4-rc0~66^2~9 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=efc07debaf60f5aa81bef78dc3219962ba88c3b8;p=git.git 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 Signed-off-by: Junio C Hamano --- 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