9431433f01
The patch added in commit 21ed7a92fe
to
fix the musl build had the unfortunate consequence to break the build
on uClibc. Thanks to Bernd's work with upstream, both the musl and
uclibc issues have been fixed upstream, so this patch updates our
numactl package to use the two upstream commits instead of our own
private patch.
Fixes:
http://autobuild.buildroot.net/results/a8729c301a52473899a3e3110802a41cc8afe9db/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
17 lines
611 B
Makefile
17 lines
611 B
Makefile
################################################################################
|
|
#
|
|
# numactl
|
|
#
|
|
################################################################################
|
|
|
|
NUMACTL_VERSION = 2.0.11
|
|
NUMACTL_SITE = ftp://oss.sgi.com/www/projects/libnuma/download
|
|
NUMACTL_PATCH = \
|
|
https://github.com/numactl/numactl/commit/3770bdc4fa7b9059db5cd2aa8bb09b50fa15e456.patch \
|
|
https://github.com/numactl/numactl/commit/31dc2951c758698bff060aeae8ffd8854616183b.patch
|
|
NUMACTL_LICENSE = LGPLv2.1 (libnuma), GPLv2 (programs)
|
|
NUMACTL_LICENSE_FILES = README
|
|
NUMACTL_INSTALL_STAGING = YES
|
|
|
|
$(eval $(autotools-package))
|