1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/devel/gcvs/files/patch-cvsunix-contrib-Makefile.in
Dirk Meyer 510a403264 A set of C++ front-end for cvs distributed under GPL.
CvsGui features

  WinCvs is written in C++ using the Microsoft MFC.
  MacCvs is written in C++ using Metrowerks PowerPlant.
  gCvs is written in C++ using GNU gtk+.
  They are using the latest cvs source code.
  They are making cvs easier for the novice.
  They are increasing the power of cvs by providing an high-end interface.
  The project is growing because it is supported and developed
    by several cvs users.

WWW: http://cvsgui.sourceforge.net/
2001-03-31 11:42:00 +00:00

25 lines
733 B
Plaintext

--- cvsunix/contrib/Makefile.in.orig Tue Sep 26 15:18:40 2000
+++ cvsunix/contrib/Makefile.in Thu Mar 29 00:42:12 2001
@@ -37,7 +37,7 @@
# Use cp if you don't have install.
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
DISTFILES = \
ChangeLog README .cvsignore intro.doc \
@@ -83,10 +83,10 @@
$(INSTALL_DATA) $(srcdir)/$$f $(libdir)/cvs/contrib/$$f; \
done
for f in $(CONTRIB_PROGS) ; do\
- $(INSTALL_PROGRAM) $$f $(libdir)/cvs/contrib/$$f; \
+ $(INSTALL_SCRIPT) $$f $(libdir)/cvs/contrib/$$f; \
done
for f in $(PROGS) ; do\
- $(INSTALL_PROGRAM) $$f $(bindir)/$$f; \
+ $(INSTALL_SCRIPT) $$f $(bindir)/$$f; \
done
.PHONY: install