Author: arichardson Date: Thu Aug 23 18:18:43 2018 New Revision: 338265 URL: https://svnweb.freebsd.org/changeset/base/338265
Log: 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) Modified: head/usr.bin/sort/Makefile Modified: head/usr.bin/sort/Makefile ============================================================================== --- head/usr.bin/sort/Makefile Thu Aug 23 18:11:55 2018 (r338264) +++ head/usr.bin/sort/Makefile Thu Aug 23 18:18:43 2018 (r338265) @@ -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 _______________________________________________ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"