af31c309e7
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>
25 lines
748 B
Makefile
25 lines
748 B
Makefile
################################################################################
|
|
#
|
|
# powerpc-utils
|
|
#
|
|
################################################################################
|
|
|
|
POWERPC_UTILS_VERSION = v1.3.3
|
|
POWERPC_UTILS_SITE = $(call github,nfont,powerpc-utils,$(POWERPC_UTILS_VERSION))
|
|
POWERPC_UTILS_DEPENDENCIES = zlib
|
|
POWERPC_UTILS_AUTORECONF = YES
|
|
POWERPC_UTILS_LICENSE = GPL-2.0+
|
|
POWERPC_UTILS_LICENSE_FILES = COPYING
|
|
|
|
POWERPC_UTILS_CONF_ENV = \
|
|
ax_cv_check_cflags___fstack_protector_all=$(if $(BR2_TOOLCHAIN_HAS_SSP),yes,no)
|
|
|
|
ifeq ($(BR2_PACKAGE_POWERPC_UTILS_RTAS),y)
|
|
POWERPC_UTILS_DEPENDENCIES += librtas
|
|
POWERPC_UTILS_CONF_OPTS = --with-librtas
|
|
else
|
|
POWERPC_UTILS_CONF_OPTS = --without-librtas
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|