diff options
author | Florian Fainelli <florian@openwrt.org> | 2006-03-29 17:08:49 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2006-03-29 17:08:49 +0000 |
commit | f7c752321c06ffe70f88ca16e415557579f41131 (patch) | |
tree | 8c7dbb2f7b2c2b4ff1c4d80f8418d5ca69dc7bed | |
parent | a4ae7a90a8dc6d77d94d138248884a6ad6e6a545 (diff) | |
download | mtk-20170518-f7c752321c06ffe70f88ca16e415557579f41131.zip mtk-20170518-f7c752321c06ffe70f88ca16e415557579f41131.tar.gz mtk-20170518-f7c752321c06ffe70f88ca16e415557579f41131.tar.bz2 |
Remove -Werror in order not to treat warnings as errors (fix gcc-4 errors), closes #428
SVN-Revision: 3551
-rw-r--r-- | openwrt/package/ustl/files/Common.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/package/ustl/files/Common.mk b/openwrt/package/ustl/files/Common.mk index fbfc6eb..88e6232 100644 --- a/openwrt/package/ustl/files/Common.mk +++ b/openwrt/package/ustl/files/Common.mk @@ -26,7 +26,7 @@ INSTALLLIB = ${INSTALL} -p -m 644 INSTALLEXE = ${INSTALL} -p -m 755 INSTALLDATA = ${INSTALL} -p -m 644 -CWARNOPTS = -Werror -Wall -W -Wpointer-arith -Wno-cast-align \ +CWARNOPTS = -Wall -W -Wpointer-arith -Wno-cast-align \ -Wcast-qual -Wwrite-strings -Wredundant-decls CXXWARNOPTS = ${CWARNOPTS} -Wconversion -Wsign-promo -Wsynth -Woverloaded-virtual PROCESSOR_OPTS = |