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)
This commit is contained in:
parent
6daf59aa79
commit
101db63b42
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user