mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue