From: Eneas U de Queiroz Date: Thu, 6 Dec 2018 11:43:36 +0000 (-0200) Subject: unixodbc: Fix LIB_PREFIX in host build X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=8dc012dfad6559a00f0aa78fb12a9ce8912d624c;p=openwrt-packages.git unixodbc: Fix LIB_PREFIX in host build When copying config.h from PKG_BUILD_DIR to HOST_BUILD_DIR, LIB_PREFIX is set to /usr/lib. Then when odbc_config is run, it reports /usr/lib as the --lib-dir, and in --libs as well, and dependent packages may fail. Set it to $(STAGING_DIR)/usr/lib to make it right. Signed-off-by: Eneas U de Queiroz --- diff --git a/libs/unixodbc/Makefile b/libs/unixodbc/Makefile index 966848ac3..21a8af180 100644 --- a/libs/unixodbc/Makefile +++ b/libs/unixodbc/Makefile @@ -132,6 +132,7 @@ endef define Host/Configure $(call Host/Configure/Default) cp $(PKG_BUILD_DIR)/config.h $(HOST_BUILD_DIR) + sed -i -e 's!\(LIB_PREFIX \).*$$$$!\1"$(STAGING_DIR)/usr/lib"!' $(HOST_BUILD_DIR)/config.h cp $(PKG_BUILD_DIR)/unixodbc_conf.h $(HOST_BUILD_DIR) endef