dc7a9bb9f7
It fails to build with my makeinfo version. Note that the autobuilders don't see this, probably because they don't have makeinfo installed. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
27 lines
847 B
Makefile
27 lines
847 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_OPT = \
|
|
$(if $(BR2_PREFER_STATIC_LIB),,--disable-static) \
|
|
MAKEINFO=:
|
|
|
|
$(eval $(autotools-package))
|