[PATCH] Explain what 'ginstall' is
From: Andy Dougherty <hidden>
Date: 2016-06-15 22:44:00
While trying git out on Solaris 8, the 'make install' step failed because
I don't have a 'ginstall' command. After puzzling over it for a while,
I finally figured out that
a) it's referring to the 'install' command that is now part of the
GNU coreutils package, and
b) it's probably unnecessary, as using the Solaris install command
gave me the same results. (However, I didn't do anything fancy,
so it may be that in some scenarios using 'ginstall' matters.
I didn't do anything other than a very simple test.)
Anyway, this patch documents it a tiny bit more. Perhaps configure
should just go looking for a suitable install program instead of
assuming everyone has one.
--- git-1.5.4.rc0/Makefile 2007-12-12 21:29:16.000000000 -0500
+++ git-andy/Makefile 2007-12-17 15:15:12.000000000 -0500@@ -416,6 +416,9 @@ NO_STRLCPY = YesPlease NO_MEMMEM = YesPlease endif +# For SunOS, this assumes you have ginstall from the +# GNU coreutils package. It's not clear whether that +# is actually necessary. ifeq ($(uname_S),SunOS) NEEDS_SOCKET = YesPlease NEEDS_NSL = YesPlease
--
Andy Dougherty doughera@lafayette.edu