[package] workaround gcc-3.4.6 not handling -iquote parameter (#5446)
authorFlorian Fainelli <florian@openwrt.org>
Mon, 6 Jul 2009 20:06:09 +0000 (20:06 +0000)
committerFlorian Fainelli <florian@openwrt.org>
Mon, 6 Jul 2009 20:06:09 +0000 (20:06 +0000)
SVN-Revision: 16721

libs/faad2/Makefile

index d1cad4dda8203fafeb388af2a953b276dca28377..2c94173f2e044e5d4fbe1d3971b49050ad64dbdc 100644 (file)
@@ -56,6 +56,10 @@ $(call Package/faad2/Default/description)
 endef
 
 define Build/Configure
+       # This replacement were do according to many comments on the web because of gcc 3.4.5 version (.6 included).-
+       # wich doesn't recognices the -iquote parameter to AM_CFLAGS
+       ($(SED) 's,-iquote $$$$(top_srcdir),-I$$$$(top_srcdir),g' $(PKG_BUILD_DIR)/libfaad/Makefile.am; \
+       $(SED) 's,-iquote $$$$(top_srcdir),-I$$$$(top_srcdir),g' $(PKG_BUILD_DIR)/libfaad/Makefile.in);
        (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status}; \
                autoreconf -vif \
        );