svn commit: r338265 - head/usr.bin/sort

Alex Richardson arichardson at FreeBSD.org
Thu Aug 23 18:18:44 UTC 2018


Author: arichardson
Date: Thu Aug 23 18:18:43 2018
New Revision: 338265
URL: https://svnweb.freebsd.org/changeset/base/338265

Log:
  Don't use absolute path to sed when building usr.bin/join
  
  This is required to build sort on Linux hosts since sed is in /bin there.
  
  Approved By:	jhb (mentor)

Modified:
  head/usr.bin/sort/Makefile

Modified: head/usr.bin/sort/Makefile
==============================================================================
--- head/usr.bin/sort/Makefile	Thu Aug 23 18:11:55 2018	(r338264)
+++ head/usr.bin/sort/Makefile	Thu Aug 23 18:18:43 2018	(r338265)
@@ -7,7 +7,7 @@ PROG=	sort
 SRCS=	bwstring.c coll.c file.c mem.c radixsort.c sort.c vsort.c
 
 sort.1: sort.1.in
-	/usr/bin/sed ${MAN_SUB} ${.ALLSRC} >${.TARGET}
+	sed ${MAN_SUB} ${.ALLSRC} >${.TARGET}
 
 CLEANFILES+= sort.1
 


More information about the svn-src-all mailing list