diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2013-10-24 01:43:22 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-10-24 08:39:28 +0200 |
commit | dc7a9bb9f7e0ac096d79c47e9240c2eb7b08dce9 (patch) | |
tree | 18f9ca7fcaf605133e2356d3be73820ef6130ec2 | |
parent | ba0d86215ec8f3b6dbddd751d595bf64d5bc8a11 (diff) | |
download | buildroot-dc7a9bb9f7e0ac096d79c47e9240c2eb7b08dce9.tar.gz buildroot-dc7a9bb9f7e0ac096d79c47e9240c2eb7b08dce9.zip |
stress: disable documentation
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>
-rw-r--r-- | package/stress/stress.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/stress/stress.mk b/package/stress/stress.mk index 63efb66f5b..b0580310fb 100644 --- a/package/stress/stress.mk +++ b/package/stress/stress.mk @@ -17,7 +17,10 @@ STRESS_AUTORECONF = YES # # 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) + $(if $(BR2_PREFER_STATIC_LIB),,--disable-static) \ + MAKEINFO=: $(eval $(autotools-package)) |