>From f4808f462f612ada2f28c0a696a1d532528a48ae Mon Sep 17 00:00:00 2001 From: Assaf Gordon Date: Sun, 12 Aug 2018 17:11:39 -0600 Subject: [PATCH] build: use system's native sed during build Do not use the locally built sed binary during the build process - it might be buggy, or contain temporary debugging/ASAN features that can break the build. See: https://lists.gnu.org/r/sed-devel/2018-08/msg00013.html . * cfg.mk (PATH): Do not add the 'sed' directory to the PATH. --- cfg.mk | 5 ----- 1 file changed, 5 deletions(-) diff --git a/cfg.mk b/cfg.mk index 227a7d0..35fea2d 100644 --- a/cfg.mk +++ b/cfg.mk @@ -14,11 +14,6 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Cause the tool(s) built by this package to be used also when running -# commands via e.g., "make syntax-check". Doing this a little sooner -# would have avoided a grep infloop bug. -export PATH := $(srcdir)/sed:${PATH} - # Used in maint.mk's web-manual rule manual_title = GNU Sed: a stream editor -- 2.11.0