Module Name:    src
Committed By:   christos
Date:           Fri Jul 24 18:56:44 UTC 2015

Modified Files:
        src/usr.bin/patch: common.h

Log Message:
Use absolute paths for RCS commands (Martin Natano)


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 src/usr.bin/patch/common.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/patch/common.h
diff -u src/usr.bin/patch/common.h:1.20 src/usr.bin/patch/common.h:1.21
--- src/usr.bin/patch/common.h:1.20	Tue Nov 25 19:31:32 2014
+++ src/usr.bin/patch/common.h	Fri Jul 24 14:56:44 2015
@@ -1,7 +1,7 @@
 /*
  * $OpenBSD: common.h,v 1.26 2006/03/11 19:41:30 otto Exp $
  * $DragonFly: src/usr.bin/patch/common.h,v 1.5 2008/08/10 23:50:12 joerg Exp $
- * $NetBSD: common.h,v 1.20 2014/11/26 00:31:32 christos Exp $
+ * $NetBSD: common.h,v 1.21 2015/07/24 18:56:44 christos Exp $
  */
 
 /*
@@ -50,8 +50,8 @@
 #define SCCSDIFF "get -p %s | diff - %s >/dev/null"
 
 #define RCSSUFFIX ",v"
-#define CHECKOUT "co -l %s"
-#define RCSDIFF "rcsdiff %s > /dev/null"
+#define CHECKOUT "/usr/bin/co"
+#define RCSDIFF "/usr/bin/rcsdiff"
 
 #define ORIGEXT ".orig"
 #define REJEXT ".rej"

Reply via email to