From 101db63b420315d32792c53dbe759cb97005be63 Mon Sep 17 00:00:00 2001 From: Alex Richardson Date: Thu, 23 Aug 2018 18:18:43 +0000 Subject: [PATCH] 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) --- usr.bin/sort/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/sort/Makefile b/usr.bin/sort/Makefile index d1684040abc..41feec2bdee 100644 --- a/usr.bin/sort/Makefile +++ b/usr.bin/sort/Makefile @@ -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