[source] zlib: use default Build/Configure rule
LEDE Commits
lede-commits at lists.infradead.org
Thu Jul 13 23:47:06 PDT 2017
stintel pushed a commit to source.git, branch master:
https://git.lede-project.org/462ca4e059dbead678163da26fb4e14748f3021e
commit 462ca4e059dbead678163da26fb4e14748f3021e
Author: Stijn Tintel <stijn at linux-ipv6.be>
AuthorDate: Sat Mar 11 09:32:19 2017 +0100
zlib: use default Build/Configure rule
Signed-off-by: Stijn Tintel <stijn at linux-ipv6.be>
---
package/libs/zlib/Makefile | 20 +++++++++-----------
1 file changed, 9 insertions(+), 11 deletions(-)
diff --git a/package/libs/zlib/Makefile b/package/libs/zlib/Makefile
index 902381b..7e3bd83 100644
--- a/package/libs/zlib/Makefile
+++ b/package/libs/zlib/Makefile
@@ -45,17 +45,15 @@ define Package/zlib-dev/description
This package includes the development support files.
endef
-define Build/Configure
- (cd $(PKG_BUILD_DIR); \
- $(TARGET_CONFIGURE_OPTS) \
- LDSHARED="$(TARGET_CC) -shared -Wl,-soname,libz.so.1" \
- CFLAGS="$(TARGET_CFLAGS) $(FPIC)" \
- ./configure \
- --prefix=/usr \
- --shared \
- --uname=Linux \
- );
-endef
+CONFIGURE_VARS := \
+ $(TARGET_CONFIGURE_OPTS) \
+ LDSHARED="$(TARGET_CC) -shared -Wl,-soname,libz.so.1" \
+ CFLAGS="$(TARGET_CFLAGS) $(FPIC)" \
+
+CONFIGURE_ARGS := \
+ --prefix=/usr \
+ --shared \
+ --uname=Linux \
define Build/Compile
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
More information about the lede-commits
mailing list