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
d3e79ea101
commit
21f8254f2b
@ -7,7 +7,7 @@ PROG= sort
|
|||||||
SRCS= bwstring.c coll.c file.c mem.c radixsort.c sort.c vsort.c
|
SRCS= bwstring.c coll.c file.c mem.c radixsort.c sort.c vsort.c
|
||||||
|
|
||||||
sort.1: sort.1.in
|
sort.1: sort.1.in
|
||||||
/usr/bin/sed ${MAN_SUB} ${.ALLSRC} >${.TARGET}
|
sed ${MAN_SUB} ${.ALLSRC} >${.TARGET}
|
||||||
|
|
||||||
CLEANFILES+= sort.1
|
CLEANFILES+= sort.1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user