From owner-cvs-gnu Sun Oct 29 01:42:10 1995 Return-Path: owner-cvs-gnu Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA06222 for cvs-gnu-outgoing; Sun, 29 Oct 1995 01:42:10 -0700 Received: from jhome.DIALix.COM (root@jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id BAA06195 ; Sun, 29 Oct 1995 01:41:54 -0700 Received: (from peter@localhost) by jhome.DIALix.COM (8.6.12/8.6.9) id QAA10096; Sun, 29 Oct 1995 16:41:41 +0800 Date: Sun, 29 Oct 1995 16:41:41 +0800 (WST) From: Peter Wemm To: CVS-commiters@freefall.freebsd.org, cvs-gnu@freefall.freebsd.org Subject: Re: cvs commit: src/gnu/usr.bin/rcs/lib conf.h In-Reply-To: <199510290835.BAA05888@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-gnu@FreeBSD.org Precedence: bulk On Sun, 29 Oct 1995, Peter Wemm wrote: > peter 95/10/29 01:35:52 > > Modified: gnu/usr.bin/rcs/lib conf.h > Log: > AARGH!!!! > > Fix the hard-coded pathname to /usr/local/bin/co and /usr/local/bin/merge > that I missed... Pointed out by: bde (sorry, forgot this in the commit message) Somebody please pass the conical hat! If you're running via ctm-cvs-cur and have just got the most recent deltas, I'd suggest applying this patch to your checked out copy of rcs/lib/conf.h so that you dont get dung out to dry if you compile/install it. The upcoming cvs-src-cur probably will be OK. -Peter RCS file: /home/ncvs/src/gnu/usr.bin/rcs/lib/conf.h,v retrieving revision 1.4 diff -c -r1.4 conf.h *** 1.4 1995/10/28 21:49:25 --- conf.h 1995/10/29 08:32:09 *************** *** 210,216 **** /* Do struct stat s and t describe the same file? Answer d if unknown. */ #define same_file(s,t,d) ((s).st_ino==(t).st_ino && (s).st_dev==(t).st_dev) #define has_utimbuf 1 /* Does struct utimbuf work? */ ! #define CO "/usr/local/bin/co" /* name of 'co' program */ #define COMPAT2 0 /* Are version 2 files supported? */ #define DIFF "/usr/bin/diff" /* name of 'diff' program */ #define DIFF3 "/usr/bin/diff3" /* name of 'diff3' program */ --- 210,216 ---- /* Do struct stat s and t describe the same file? Answer d if unknown. */ #define same_file(s,t,d) ((s).st_ino==(t).st_ino && (s).st_dev==(t).st_dev) #define has_utimbuf 1 /* Does struct utimbuf work? */ ! #define CO "/usr/bin/co" /* name of 'co' program */ #define COMPAT2 0 /* Are version 2 files supported? */ #define DIFF "/usr/bin/diff" /* name of 'diff' program */ #define DIFF3 "/usr/bin/diff3" /* name of 'diff3' program */ *************** *** 221,227 **** #define DIFF_FAILURE 1 /* DIFF status if differences are found */ #define DIFF_TROUBLE 2 /* DIFF status if trouble */ #define ED "/bin/ed" /* name of 'ed' program (used only if !DIFF3_BIN) */ ! #define MERGE "/usr/local/bin/merge" /* name of 'merge' program */ #define TMPDIR "/tmp" /* default directory for temporary files */ #define SLASH '/' /* principal filename separator */ #define SLASHes '/' /* `case SLASHes:' labels all filename separators */ --- 221,227 ---- #define DIFF_FAILURE 1 /* DIFF status if differences are found */ #define DIFF_TROUBLE 2 /* DIFF status if trouble */ #define ED "/bin/ed" /* name of 'ed' program (used only if !DIFF3_BIN) */ ! #define MERGE "/usr/bin/merge" /* name of 'merge' program */ #define TMPDIR "/tmp" /* default directory for temporary files */ #define SLASH '/' /* principal filename separator */ #define SLASHes '/' /* `case SLASHes:' labels all filename separators */