summaryrefslogtreecommitdiff
path: root/usr.bin/sort
diff options
context:
space:
mode:
authorAlex Richardson <arichardson@FreeBSD.org>2018-08-23 18:18:43 +0000
committerAlex Richardson <arichardson@FreeBSD.org>2018-08-23 18:18:43 +0000
commit101db63b420315d32792c53dbe759cb97005be63 (patch)
tree96dad056c8ed827ab1d2439891528ccb7fdcbf18 /usr.bin/sort
parent6daf59aa79ecdcc0c21a389fa63038685be30fa8 (diff)
downloadsrc-test-101db63b420315d32792c53dbe759cb97005be63.tar.gz
src-test-101db63b420315d32792c53dbe759cb97005be63.zip
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)
Notes
Notes: svn path=/head/; revision=338265
Diffstat (limited to 'usr.bin/sort')
-rw-r--r--usr.bin/sort/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/sort/Makefile b/usr.bin/sort/Makefile
index d1684040abc8d..41feec2bdee03 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