mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 00:30:33 -04:00
- Enabled the RCS wrapper tools - Added a patch so the RCS wrapper tools will find the installed CVSNT binary, rather than relying on the PATH variable. This avoids an error caused by executing the base system version of CVS. PR: 116792
11 lines
303 B
C++
11 lines
303 B
C++
--- rcs/common.cpp.orig Mon Oct 1 10:54:14 2007
|
|
+++ rcs/common.cpp Mon Oct 1 10:56:12 2007
|
|
@@ -68,7 +68,7 @@
|
|
int n;
|
|
char **nargv = (char**)malloc((argc+3)*sizeof(char*));
|
|
|
|
- nargv[0]="cvs";
|
|
+ nargv[0]="%%PREFIX%%/bin/cvs";
|
|
nargv[1]="rcsfile";
|
|
nargv[2]=(char*)command;
|
|
for(n=1; n<argc; n++)
|