We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
17 lines
613 B
Makefile
17 lines
613 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), GPL-2.0 (programs)
|
|
NUMACTL_LICENSE_FILES = README
|
|
NUMACTL_INSTALL_STAGING = YES
|
|
|
|
$(eval $(autotools-package))
|