We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3cba68 commit 462ca4eCopy full SHA for 462ca4e
package/libs/zlib/Makefile
@@ -45,17 +45,15 @@ define Package/zlib-dev/description
45
This package includes the development support files.
46
endef
47
48
-define Build/Configure
49
- (cd $(PKG_BUILD_DIR); \
50
- $(TARGET_CONFIGURE_OPTS) \
51
- LDSHARED="$(TARGET_CC) -shared -Wl,-soname,libz.so.1" \
52
- CFLAGS="$(TARGET_CFLAGS) $(FPIC)" \
53
- ./configure \
54
- --prefix=/usr \
55
- --shared \
56
- --uname=Linux \
57
- );
58
-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 \
59
60
define Build/Compile
61
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
0 commit comments