diff options
Diffstat (limited to 'package')
-rw-r--r-- | package/busybox/Config.in.manual | 1 | ||||
-rw-r--r-- | package/busybox/Makefile | 3 | ||||
-rw-r--r-- | package/libpthread/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/package/busybox/Config.in.manual b/package/busybox/Config.in.manual index 40acc7d9a..1eea95f98 100644 --- a/package/busybox/Config.in.manual +++ b/package/busybox/Config.in.manual @@ -125,6 +125,7 @@ config ADK_PACKAGE_BUSYBOX_MINIMAL select BUSYBOX_GREP select BUSYBOX_HALT select BUSYBOX_INIT + select BUSYBOX_WHICH select BUSYBOX_WHOAMI config ADK_PACKAGE_BUSYBOX_ALL diff --git a/package/busybox/Makefile b/package/busybox/Makefile index 2b06f139e..4ea2f5d27 100644 --- a/package/busybox/Makefile +++ b/package/busybox/Makefile @@ -56,9 +56,6 @@ do-configure: ;; \ esac \ done -ifeq ($(ADK_TARGET_WITHOUT_MMU),y) - echo 'CONFIG_NOMMU=y' >> ${WRKBUILD}/.config -endif $(SED) 's;@IDIR@;${WRKINST};' ${WRKBUILD}/.config do-build: diff --git a/package/libpthread/Makefile b/package/libpthread/Makefile index 1b9663769..62cf9b729 100644 --- a/package/libpthread/Makefile +++ b/package/libpthread/Makefile @@ -32,10 +32,12 @@ libpthread-install: ifneq ($(ADK_TARGET_LIB_MUSL),y) ifneq ($(ADK_TARGET_USE_STATIC_LIBS),y) ifneq ($(ADK_TARGET_WITHOUT_THREADS),y) +ifneq ($(ADK_TARGET_BINFMT_FLAT),y) ${INSTALL_DIR} ${IDIR_LIBPTHREAD}/$(ADK_TARGET_LIBC_PATH) ${CP} ${STAGING_TARGET_DIR}/lib/libpthread*.so* ${IDIR_LIBPTHREAD}/$(ADK_TARGET_LIBC_PATH) endif endif endif +endif include ${ADK_TOPDIR}/mk/pkg-bottom.mk |