Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/patch Use absolute paths for RCS commands (Martin Na...



details:   https://anonhg.NetBSD.org/src/rev/31265688124d
branches:  trunk
changeset: 339488:31265688124d
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Jul 24 18:56:44 2015 +0000

description:
Use absolute paths for RCS commands (Martin Natano)

diffstat:

 usr.bin/patch/common.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (23 lines):

diff -r 068cfecf5c35 -r 31265688124d usr.bin/patch/common.h
--- a/usr.bin/patch/common.h    Fri Jul 24 18:56:00 2015 +0000
+++ b/usr.bin/patch/common.h    Fri Jul 24 18:56:44 2015 +0000
@@ -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"



Home | Main Index | Thread Index | Old Index