svn commit: r279036 - in stable/8/gnu/usr.bin: diff diff3 sdiff

Ian Lepore ian at FreeBSD.org
Fri Feb 20 01:03:45 UTC 2015


Author: ian
Date: Fri Feb 20 01:03:44 2015
New Revision: 279036
URL: https://svnweb.freebsd.org/changeset/base/279036

Log:
  MFC r204227:  Remove -b .orig from patch commands, since it's the default.
  
  This allows an 8-stable build to work on a system with newer tools that
  don't have the old -b option.

Modified:
  stable/8/gnu/usr.bin/diff/Makefile
  stable/8/gnu/usr.bin/diff3/Makefile
  stable/8/gnu/usr.bin/sdiff/Makefile
Directory Properties:
  stable/8/gnu/usr.bin/diff/   (props changed)
  stable/8/gnu/usr.bin/diff3/   (props changed)
  stable/8/gnu/usr.bin/sdiff/   (props changed)

Modified: stable/8/gnu/usr.bin/diff/Makefile
==============================================================================
--- stable/8/gnu/usr.bin/diff/Makefile	Fri Feb 20 01:02:32 2015	(r279035)
+++ stable/8/gnu/usr.bin/diff/Makefile	Fri Feb 20 01:03:44 2015	(r279036)
@@ -29,7 +29,7 @@ LDADD=	-lgnuregex
 
 .for f in diff.c context.c
 ${f}: ${DIFFSRC}/${f} ${.CURDIR}/${f}.diff
-	patch -s -b .orig -o ${.TARGET} < ${.CURDIR}/${f}.diff ${DIFFSRC}/${f}
+	patch -s -o ${.TARGET} < ${.CURDIR}/${f}.diff ${DIFFSRC}/${f}
 CLEANFILES+= ${f}
 .endfor
 

Modified: stable/8/gnu/usr.bin/diff3/Makefile
==============================================================================
--- stable/8/gnu/usr.bin/diff3/Makefile	Fri Feb 20 01:02:32 2015	(r279035)
+++ stable/8/gnu/usr.bin/diff3/Makefile	Fri Feb 20 01:03:44 2015	(r279036)
@@ -20,7 +20,7 @@ CFLAGS+=-DDEFAULT_DIFF_PROGRAM=\"/usr/bi
 
 .for f in diff3.c
 ${f}: ${DIFFSRC}/${f} ${.CURDIR}/${f}.diff
-	patch -s -b .orig -o ${.TARGET} < ${.CURDIR}/${f}.diff ${DIFFSRC}/${f}
+	patch -s -o ${.TARGET} < ${.CURDIR}/${f}.diff ${DIFFSRC}/${f}
 CLEANFILES+= ${f}
 .endfor
 

Modified: stable/8/gnu/usr.bin/sdiff/Makefile
==============================================================================
--- stable/8/gnu/usr.bin/sdiff/Makefile	Fri Feb 20 01:02:32 2015	(r279035)
+++ stable/8/gnu/usr.bin/sdiff/Makefile	Fri Feb 20 01:03:44 2015	(r279036)
@@ -21,7 +21,7 @@ CFLAGS+=-DDEFAULT_DIFF_PROGRAM=\"/usr/bi
 
 .for f in sdiff.c
 ${f}: ${DIFFSRC}/${f} ${.CURDIR}/${f}.diff
-	patch -s -b .orig -o ${.TARGET} < ${.CURDIR}/${f}.diff ${DIFFSRC}/${f}
+	patch -s -o ${.TARGET} < ${.CURDIR}/${f}.diff ${DIFFSRC}/${f}
 CLEANFILES+= ${f}
 .endfor
 


More information about the svn-src-all mailing list