diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-02 15:06:45 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-02 15:06:45 +0100 |
commit | c40e92f7cfbf6095abcb97fdfd6e7ce33579022c (patch) | |
tree | d35e611f43f8daac9d664140e3af13be716ace51 /tools | |
parent | d93b039644847733687d1d30c09d6861fb57e8e4 (diff) | |
parent | 0317e391cbf248c3d6ee00ec6bf8a77870d76ffa (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 3 | ||||
-rw-r--r-- | tools/adk/depmaker.c | 2 | ||||
-rw-r--r-- | tools/adk/pkgmaker.c | 9 | ||||
-rw-r--r-- | tools/bc/Makefile | 2 | ||||
-rw-r--r-- | tools/gperf/Makefile | 25 |
5 files changed, 3 insertions, 38 deletions
diff --git a/tools/Makefile b/tools/Makefile index d40f35f16..2d29372dc 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -17,9 +17,6 @@ endif ifeq ($(ADK_HOST_NEED_SYSLINUX),y) TARGETS+=syslinux endif -ifeq ($(ADK_HOST_NEED_GPERF),y) -TARGETS+=gperf -endif ifeq ($(ADK_HOST_NEED_JFFS2),y) TARGETS+=mtd-utils endif diff --git a/tools/adk/depmaker.c b/tools/adk/depmaker.c index f1483cced..572baa392 100644 --- a/tools/adk/depmaker.c +++ b/tools/adk/depmaker.c @@ -165,7 +165,7 @@ int main() { } /* exclude manual maintained packages from package/Makefile */ - if (!(strncmp(pkgdirp->d_name, "eglibc", 6) == 0) && + if ( !(strncmp(pkgdirp->d_name, "libc", 4) == 0 && strlen(pkgdirp->d_name) == 4) && !(strncmp(pkgdirp->d_name, "libpthread", 10) == 0 && strlen(pkgdirp->d_name) == 10) && !(strncmp(pkgdirp->d_name, "uclibc++", 8) == 0) && diff --git a/tools/adk/pkgmaker.c b/tools/adk/pkgmaker.c index d2c444f4f..51d31aa70 100644 --- a/tools/adk/pkgmaker.c +++ b/tools/adk/pkgmaker.c @@ -394,13 +394,6 @@ int main() { fprintf(cfg, "\tdepends on ADK_TARGET_LIB_GLIBC\n"); fprintf(cfg, "\thelp\n"); fprintf(cfg, "\t GNU C library header files.\n\n"); - fprintf(cfg, "config ADK_PACKAGE_EGLIBC_DEV\n"); - fprintf(cfg, "\tprompt \"eglibc-dev........... development files for eglibc\"\n"); - fprintf(cfg, "\ttristate\n"); - fprintf(cfg, "\tdefault n\n"); - fprintf(cfg, "\tdepends on ADK_TARGET_LIB_EGLIBC\n"); - fprintf(cfg, "\thelp\n"); - fprintf(cfg, "\t GNU C library header files.\n\n"); fprintf(cfg, "config ADK_PACKAGE_UCLIBC_DEV\n"); fprintf(cfg, "\tprompt \"uclibc-dev........... development files for uclibc\"\n"); fprintf(cfg, "\ttristate\n"); @@ -873,7 +866,7 @@ int main() { fprintf(cfg, "\nchoice\n"); fprintf(cfg, "prompt \"C++ library to use\"\n"); fprintf(cfg, "depends on ADK_COMPILE_%s\n\n", toupperstr(pkgdirp->d_name)); - fprintf(cfg, "default ADK_COMPILE_%s_WITH_STDCXX if ADK_TARGET_LIB_GLIBC || ADK_TARGET_LIB_EGLIBC\n", pkg_cxx); + fprintf(cfg, "default ADK_COMPILE_%s_WITH_STDCXX if ADK_TARGET_LIB_GLIBC\n", pkg_cxx); fprintf(cfg, "default ADK_COMPILE_%s_WITH_UCLIBCXX if ADK_TARGET_LIB_UCLIBC\n\n", pkg_cxx); fprintf(cfg, "config ADK_COMPILE_%s_WITH_STDCXX\n", pkg_cxx); fprintf(cfg, "\tbool \"GNU C++ library\"\n"); diff --git a/tools/bc/Makefile b/tools/bc/Makefile index bb3c40492..8b984e734 100644 --- a/tools/bc/Makefile +++ b/tools/bc/Makefile @@ -14,7 +14,7 @@ include ../rules.mk install: ${STAGING_HOST_DIR}/usr/bin/bc $(WRKBUILD)/.compiled: ${WRKDIST}/.prepared - (cd ${WRKBUILD}; ./configure) + (cd ${WRKBUILD}; PATH="$(STAGING_HOST_DIR)/usr/bin:$$PATH" ./configure) ${MAKE} -C ${WRKBUILD} CC='${CC_FOR_BUILD}' touch $@ diff --git a/tools/gperf/Makefile b/tools/gperf/Makefile deleted file mode 100644 index 7f7d6466d..000000000 --- a/tools/gperf/Makefile +++ /dev/null @@ -1,25 +0,0 @@ -# This file is part of the OpenADK project. OpenADK is copyrighted -# material, please see the LICENCE file in the top-level directory. - -include $(TOPDIR)/rules.mk - -PKG_NAME:= gperf -PKG_VERSION:= 3.0.4 -PKG_RELEASE:= 1 -PKG_MD5SUM:= c1f1db32fb6598d6a93e6e88796a8632 -PKG_SITES:= http://ftp.gnu.org/pub/gnu/gperf/ - -include ../rules.mk - -install: ${STAGING_HOST_DIR}/usr/bin/gperf - -$(WRKBUILD)/.compiled: ${WRKDIST}/.prepared - (cd ${WRKBUILD}; ./configure) - ${MAKE} -C ${WRKBUILD} CC='${CC_FOR_BUILD}' - touch $@ - -${STAGING_HOST_DIR}/usr/bin/gperf: $(WRKBUILD)/.compiled - $(INSTALL_BIN) $(WRKBUILD)/src/gperf \ - ${STAGING_HOST_DIR}/usr/bin - -include $(TOPDIR)/mk/tools.mk |