diff options
-rw-r--r-- | package/dnsmasq/Makefile | 4 | ||||
-rw-r--r-- | package/expat/Makefile | 3 | ||||
-rw-r--r-- | toolchain/expat/Makefile | 1 | ||||
-rw-r--r-- | toolchain/gcc/Makefile | 2 |
4 files changed, 6 insertions, 4 deletions
diff --git a/package/dnsmasq/Makefile b/package/dnsmasq/Makefile index d204305b0..d036235a1 100644 --- a/package/dnsmasq/Makefile +++ b/package/dnsmasq/Makefile @@ -4,9 +4,9 @@ include ${ADK_TOPDIR}/rules.mk PKG_NAME:= dnsmasq -PKG_VERSION:= 2.90 +PKG_VERSION:= 2.91 PKG_RELEASE:= 1 -PKG_HASH:= 8e50309bd837bfec9649a812e066c09b6988b73d749b7d293c06c57d46a109e4 +PKG_HASH:= f622682848b33677adb2b6ad08264618a2ae0a01da486a93fd8cd91186b3d153 PKG_DESCR:= lightweight dns, dhcp and tftp server PKG_SECTION:= net/dns PKG_KDEPENDS:= inotify-user diff --git a/package/expat/Makefile b/package/expat/Makefile index 6b58ee822..b178c115f 100644 --- a/package/expat/Makefile +++ b/package/expat/Makefile @@ -25,7 +25,8 @@ TARGET_CFLAGS:= $(filter-out -static,$(TARGET_CFLAGS)) TARGET_LDFLAGS:=$(filter-out -static,$(TARGET_LDFLAGS)) endif -CONFIGURE_ARGS+= --without-docbook +CONFIGURE_ARGS+= --without-docbook \ + --without-tests libexpat-install: ${INSTALL_DIR} ${IDIR_LIBEXPAT}/usr/lib diff --git a/toolchain/expat/Makefile b/toolchain/expat/Makefile index 6d1c6215b..1affc7b28 100644 --- a/toolchain/expat/Makefile +++ b/toolchain/expat/Makefile @@ -17,6 +17,7 @@ $(WRKBUILD)/.configured: --enable-static \ --disable-shared \ --without-docbook \ + --without-tests \ ); touch $@ diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index fb03e9633..af036de1a 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -399,7 +399,7 @@ $(WRKBUILD)/.installed: $(WRKBUILD)/.compiled # remove duplicate tools, convert hardlinks to symlinks set -e; \ cd $(TOOLCHAIN_DIR)/usr/$(GNU_TARGET_NAME)/bin; \ - for app in ar as c++ g++ gcc ld ld.gold ld.bfd nm objcopy objdump ranlib strip; do \ + for app in ar as c++ g++ gcc ld ld.bfd nm objcopy objdump ranlib strip; do \ ln -sf ../../bin/$(GNU_TARGET_NAME)-$${app} $${app}; \ done; (cd $(TOOLCHAIN_DIR)/usr/bin && \ |