1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/devel/cvslines/files/patch-aa
Joseph Koshy 9f3ac4d8ea A port of `cvslines'; a CVS wrapper that helps with merging changes
between various cvs branches, where the branches represent different
lines of development.
1998-08-25 10:32:47 +00:00

24 lines
850 B
Plaintext

--- CONFIG-- Thu May 22 00:09:38 1997
+++ CONFIG Tue Aug 25 14:14:24 1998
@@ -14,17 +14,17 @@
# The absolute path to the perl interpreter to use.
# INSTALL will substitute this into the #!... line.
#
-if (! defined($PERL5)) { $PERL5 = "/usr/local/bin/perl5"; } # cfg
+if (! defined($PERL5)) { $PERL5 = "$ENV{'PREFIX'}/bin/perl5"; } # cfg
# Where to install the cvslines scripts...
# (Absolute path)
#
-if (! defined($BINDIR)) { $BINDIR = "/usr/local/bin"; } # cfg
+if (! defined($BINDIR)) { $BINDIR = "$ENV{'PREFIX'}/bin"; } # cfg
# Where to install the cvslines man page...
# (Absolute path)
#
-if (! defined($MANDIR)) { $MAN1DIR = "/usr/local/man/man1"; } # cfg
+if (! defined($MANDIR)) { $MAN1DIR = "$ENV{'PREFIX'}/man/man1"; } # cfg
######################################################################
#