diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-11-21 23:18:25 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-11-22 12:12:10 +0100 |
commit | 768f261be03c29829b653467bc3c1587b0e751dc (patch) | |
tree | 62eafd9fd074266b29ce2be93f154bb0072f54c6 | |
parent | b14cab5864dd943d2be6232432ee2172b044cd67 (diff) | |
download | buildroot-768f261be03c29829b653467bc3c1587b0e751dc.tar.gz buildroot-768f261be03c29829b653467bc3c1587b0e751dc.zip |
ola: disable -Werror
By default, the ola build uses -Werror, so let's pass
--disable-fatal-warnings to remove this and avoid build failures
caused by warnings.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/ola/ola.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/ola/ola.mk b/package/ola/ola.mk index 835ca4e504..bc7de24422 100644 --- a/package/ola/ola.mk +++ b/package/ola/ola.mk @@ -19,7 +19,8 @@ OLA_CONF_OPT = \ --disable-tcmalloc \ --disable-unittests \ --disable-root-check \ - --disable-java-libs + --disable-java-libs \ + --disable-fatal-warnings # sets where to find python libs built for target and required by ola OLA_CONF_ENV = PYTHONPATH=$(TARGET_DIR)/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages |