mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
https://lists.gnu.org/archive/html/sed-devel/2026-04/msg00027.html "'sed --follow-symlinks -i' no longer has a TOCTOU race [...]" Fixes CVE-2026-5958: https://cert.pl/en/posts/2026/04/CVE-2026-5958/ Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
25 lines
585 B
Makefile
25 lines
585 B
Makefile
################################################################################
|
|
#
|
|
# sed
|
|
#
|
|
################################################################################
|
|
|
|
SED_VERSION = 4.10
|
|
SED_SOURCE = sed-$(SED_VERSION).tar.xz
|
|
SED_SITE = $(BR2_GNU_MIRROR)/sed
|
|
SED_LICENSE = GPL-3.0
|
|
SED_LICENSE_FILES = COPYING
|
|
SED_CPE_ID_VENDOR = gnu
|
|
|
|
SED_CONF_OPTS = \
|
|
--bindir=/bin \
|
|
--libdir=/lib \
|
|
--libexecdir=/usr/lib \
|
|
--sysconfdir=/etc \
|
|
--datadir=/usr/share \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--include=$(STAGING_DIR)/usr/include
|
|
|
|
$(eval $(autotools-package))
|