f70c58c2c7
This comment is about host-cpio which hasn't been added in Buildroot. Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
1.0 KiB
Makefile
25 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# cpio
|
|
#
|
|
################################################################################
|
|
|
|
CPIO_VERSION = 2.11
|
|
CPIO_SITE = http://ftp.gnu.org/gnu/cpio
|
|
CPIO_LICENSE = GPLv3+
|
|
CPIO_LICENSE_FILES = COPYING
|
|
CPIO_PATCH = \
|
|
https://projects.archlinux.org/svntogit/packages.git/plain/cpio/trunk/cpio-2.11-stdio.in.patch \
|
|
https://projects.archlinux.org/svntogit/packages.git/plain/cpio/trunk/cpio-2.11-CVE-2014-9112.patch \
|
|
https://projects.archlinux.org/svntogit/packages.git/plain/cpio/trunk/cpio-2.11-testsuite-CVE-2014-9112.patch \
|
|
https://projects.archlinux.org/svntogit/packages.git/plain/cpio/trunk/cpio-2.11-check_for_symlinks-CVE-2015-1197.patch \
|
|
https://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-arch/cpio/files/cpio-2.11-stat.patch
|
|
|
|
# cpio uses argp.h which is not provided by uclibc or musl by default.
|
|
# Use the argp-standalone package to provide this.
|
|
ifeq ($(BR2_PACKAGE_ARGP_STANDALONE),y)
|
|
CPIO_DEPENDENCIES += argp-standalone
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|