diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-01 18:50:07 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-08-01 18:50:19 +0200 |
commit | 39a2d17b4009eafb05f910735ea675b75d4e3c7e (patch) | |
tree | c5c4ad97200927f0acfceb458c3c12cdc0e3c3a0 /package | |
parent | ff4c51f5c203a2efc39306e2cff787cc05caae64 (diff) |
more patches for musl userland as buildsystem
Diffstat (limited to 'package')
-rw-r--r-- | package/heirloom-cpio/src/Makefile | 2 | ||||
-rw-r--r-- | package/libtool/Makefile | 1 | ||||
-rw-r--r-- | package/xz/Makefile | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/package/heirloom-cpio/src/Makefile b/package/heirloom-cpio/src/Makefile index ecaf82243..0762453b9 100644 --- a/package/heirloom-cpio/src/Makefile +++ b/package/heirloom-cpio/src/Makefile @@ -25,4 +25,4 @@ SRCS:= ib_open.c \ cpio.c cpio: ${SRCS} - $(CC) $(CFLAGS_FOR_BUILD) -D_GNU_SOURCE -I. -o $@ $^ + $(CC) $(CFLAGS) -D_GNU_SOURCE -I. -o $@ $^ diff --git a/package/libtool/Makefile b/package/libtool/Makefile index d253e1bbc..cef0c56e2 100644 --- a/package/libtool/Makefile +++ b/package/libtool/Makefile @@ -32,6 +32,7 @@ endif CONFIGURE_ARGS+= --enable-ltdl-install XAKE_FLAGS+= HELP2MAN=/bin/echo +HOST_CONFIGURE_ARGS+= --enable-ltdl-install --disable-shared HOST_XAKE_FLAGS+= HELP2MAN=/bin/echo libtool-install: diff --git a/package/xz/Makefile b/package/xz/Makefile index 5536cb960..b18dfcbeb 100644 --- a/package/xz/Makefile +++ b/package/xz/Makefile @@ -30,6 +30,8 @@ $(eval $(call HOST_template,XZ,xz,${PKG_VERSION}-${PKG_RELEASE})) $(eval $(call PKG_template,XZ,xz,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) $(eval $(call PKG_template,LIBXZ,libxz,${PKG_VERSION}-${PKG_RELEASE},${PKGSS_LIBXZ},${PKGSD_LIBXZ},${PKGSC_LIBXZ},${PKG_OPTS})) +HOST_CONFIGURE_ARGS+= --disable-shared + xz-install: ${INSTALL_DIR} ${IDIR_XZ}/usr/bin ${CP} ${WRKINST}/usr/bin/* ${IDIR_XZ}/usr/bin |