diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2012-04-16 23:12:38 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-04-16 23:12:38 +0200 |
commit | e530970c28ac1341613cc7a3605960e0373731b6 (patch) | |
tree | a4da217513482c1049dc2f392a071fb4a4ea912e /package | |
parent | 5d8af3747afb10094886e282f416fb0221cb1350 (diff) | |
download | buildroot-novena-e530970c28ac1341613cc7a3605960e0373731b6.tar.gz buildroot-novena-e530970c28ac1341613cc7a3605960e0373731b6.zip |
libhid: don't build with -Werror
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/libhid/libhid.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/package/libhid/libhid.mk b/package/libhid/libhid.mk index 7730af839..8ad9ac1fa 100644 --- a/package/libhid/libhid.mk +++ b/package/libhid/libhid.mk @@ -12,6 +12,10 @@ LIBHID_INSTALL_STAGING = YES # configure runs libusb-config for cflags/ldflags. Ensure it picks up # the target version LIBHID_CONF_ENV = PATH=$(STAGING_DIR)/usr/bin:$(TARGET_PATH) -LIBHID_CONF_OPT = --disable-swig --without-doxygen --disable-package-config +LIBHID_CONF_OPT = \ + --disable-swig \ + --disable-werror \ + --without-doxygen \ + --disable-package-config $(eval $(call AUTOTARGETS)) |