Date: Thu, 23 Aug 2018 18:18:43 +0000 (UTC) From: Alex Richardson <arichardson@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r338265 - head/usr.bin/sort Message-ID: <201808231818.w7NIIh1H071770@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808231818.w7NIIh1H071770>