Make: detect need to use ginstall

Junio C Hamano committed Jul 6, 2009 at 10:05 UTC 3dc11f3bcf0fbc8cfeeb6824d2f085f8ef40e878
1 file changed +4
Make
+4
@@ -107,6 +107,10 @@ if test -z "${make:+set}" && {
107 then
108 make=gmake
109 fi
110 +if test -f /bin/ginstall
111 +then
112 + set INSTALL=ginstall "$@"
113 +fi
114
115 CFLAGS="$O $Wall -g"
116 OK_TO_USE_CFLAGS=Yes