ports/devel/cvsnt/files/patch-rcs-common.cpp.in
Max Khon 3cfc3ae043 - Update to 2.5.03.2704
- 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
2007-10-15 21:47:04 +00:00

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++)