924ca9414f
In GNU Less before 609, crafted data can result in "less -R" not filtering ANSI escape sequences sent to the terminal. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
580 B
Makefile
22 lines
580 B
Makefile
################################################################################
|
|
#
|
|
# less
|
|
#
|
|
################################################################################
|
|
|
|
LESS_VERSION = 590
|
|
LESS_SITE = http://www.greenwoodsoftware.com/less
|
|
LESS_LICENSE = GPL-3.0+
|
|
LESS_LICENSE_FILES = COPYING
|
|
LESS_CPE_ID_VENDOR = gnu
|
|
LESS_DEPENDENCIES = ncurses
|
|
|
|
# 0001-End-OSC8-hyperlink-on-invalid-embedded-escape-sequence.patch
|
|
LESS_IGNORE_CVES += CVE-2022-46663
|
|
|
|
define LESS_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 $(@D)/less $(TARGET_DIR)/usr/bin/less
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|