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>
26 lines
814 B
Makefile
26 lines
814 B
Makefile
################################################################################
|
|
#
|
|
# stress
|
|
#
|
|
################################################################################
|
|
|
|
STRESS_VERSION = 1.0.4
|
|
STRESS_SITE = http://people.seas.harvard.edu/~apw/stress
|
|
STRESS_LICENSE = GPL-2.0+
|
|
STRESS_LICENSE_FILES = COPYING
|
|
|
|
# Stress is linked statically if the --enable-static is specified.
|
|
# However, this option is always specified in the global
|
|
# SHARED_STATIC_LIBS_OPTS to tell packages to build static libraries,
|
|
# if supported.
|
|
#
|
|
# If the BR2_STATIC_LIBS is not defined, we have to specify
|
|
# --disable-static explicitly to get stress linked dynamically.
|
|
#
|
|
# Also, disable documentation by undefining makeinfo
|
|
STRESS_CONF_OPTS = \
|
|
$(if $(BR2_STATIC_LIBS),,--disable-static) \
|
|
MAKEINFO=:
|
|
|
|
$(eval $(autotools-package))
|