diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-24 15:30:43 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-24 15:30:51 +0200 |
commit | 53a04c2cc20d7fc34a6d772571b41e37c432e22b (patch) | |
tree | 34daba79a0ccf571bd19ee8420a274d55b167ece /package/libstdcxx/Makefile | |
parent | 0e5494c148d3385fb7d5e463b0aaa5448dcd825d (diff) |
remove PKG_NEED_CXX
Diffstat (limited to 'package/libstdcxx/Makefile')
-rw-r--r-- | package/libstdcxx/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/libstdcxx/Makefile b/package/libstdcxx/Makefile index ebfebcaf3..39d2f3684 100644 --- a/package/libstdcxx/Makefile +++ b/package/libstdcxx/Makefile @@ -2,20 +2,20 @@ # material, please see the LICENCE file in the top-level directory. include ${TOPDIR}/rules.mk + ifeq ($(ADK_TARGET_LIB_GLIBC),y) include ${TOPDIR}/toolchain/glibc/Makefile.inc else ifeq ($(ADK_TARGET_LIB_MUSL),y) include ${TOPDIR}/toolchain/musl/Makefile.inc -else -include ${TOPDIR}/toolchain/uclibc/Makefile.inc endif +ifeq ($(ADK_TARGET_LIB_UCLIBC),y) +include ${TOPDIR}/toolchain/uclibc/Makefile.inc endif PKG_NAME:= libstdcxx PKG_DESCR:= C++ support library PKG_SECTION:= libs -PKG_NEED_CXX:= 1 NO_DISTFILES:= 1 include ${TOPDIR}/mk/package.mk |