Update of /cvsroot/tmux/tmux
In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv10853

Modified Files:
        GNUmakefile Makefile 
Log Message:
Use INSTALL so people on Solaris can set it to ginstall.



Index: GNUmakefile
===================================================================
RCS file: /cvsroot/tmux/tmux/GNUmakefile,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -d -r1.124 -r1.125
--- GNUmakefile 21 Apr 2010 21:22:06 -0000      1.124
+++ GNUmakefile 23 Apr 2010 07:38:36 -0000      1.125
@@ -52,9 +52,10 @@
 endif
 
 PREFIX?= /usr/local
-INSTALLDIR= install -d
-INSTALLBIN= install -m 555
-INSTALLMAN= install -m 444
+INSTALL?= install
+INSTALLDIR= $(INSTALL) -d
+INSTALLBIN= $(INSTALL) -m 555
+INSTALLMAN= $(INSTALL) -m 444
 
 SRCS= $(shell echo *.c|sed 's|osdep-[a-z0-9]*.c||g')
 include config.mk

Index: Makefile
===================================================================
RCS file: /cvsroot/tmux/tmux/Makefile,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -d -r1.157 -r1.158
--- Makefile    21 Apr 2010 21:22:06 -0000      1.157
+++ Makefile    23 Apr 2010 07:38:36 -0000      1.158
@@ -48,9 +48,10 @@
 .endif
 
 PREFIX?= /usr/local
-INSTALLDIR= install -d
-INSTALLBIN= install -m 555
-INSTALLMAN= install -m 444
+INSTALL?= install
+INSTALLDIR= ${INSTALL} -d
+INSTALLBIN= ${INSTALL} -m 555
+INSTALLMAN= ${INSTALL} -m 444
 
 SRCS!= echo *.c|sed 's|osdep-[a-z0-9]*.c||g'
 .include "config.mk"


------------------------------------------------------------------------------
_______________________________________________
tmux-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tmux-cvs

Reply via email to