aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
27 lines
848 B
Makefile
27 lines
848 B
Makefile
################################################################################
|
|
#
|
|
# stress
|
|
#
|
|
################################################################################
|
|
|
|
STRESS_VERSION = 1.0.4
|
|
STRESS_SITE = http://people.seas.harvard.edu/~apw/stress
|
|
STRESS_LICENSE = GPLv2+
|
|
STRESS_LICENSE_FILES = COPYING
|
|
STRESS_AUTORECONF = YES
|
|
|
|
# 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_PREFER_STATIC_LIB 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_PREFER_STATIC_LIB),,--disable-static) \
|
|
MAKEINFO=:
|
|
|
|
$(eval $(autotools-package))
|