X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/79db44108353b1ad3438901c62d89aa300c796c6..e7f46930ad438bcaab518fe2ed28e2ea2497885d:/package/opkg/Makefile diff --git a/package/opkg/Makefile b/package/opkg/Makefile index 4d702bae9..07d3c81b6 100644 --- a/package/opkg/Makefile +++ b/package/opkg/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2010 OpenWrt.org +# Copyright (C) 2006-2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=opkg -PKG_REV:=576 +PKG_REV:=618 PKG_VERSION:=$(PKG_REV) PKG_RELEASE:=1 @@ -17,7 +17,7 @@ PKG_SOURCE_VERSION:=$(PKG_REV) PKG_SOURCE_SUBDIR:=opkg-$(PKG_VERSION) PKG_SOURCE_URL:=http://opkg.googlecode.com/svn/trunk/ PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz -PKG_FIXUP = libtool +PKG_FIXUP:=autoreconf PKG_REMOVE_FILES = autogen.sh aclocal.m4 include $(INCLUDE_DIR)/package.mk @@ -46,6 +46,7 @@ define Package/opkg/conffiles endef TARGET_CFLAGS += $(if $(CONFIG_GCC_VERSION_4_3)$(CONFIG_GCC_VERSION_4_4),-Wno-array-bounds) +TARGET_CFLAGS += -ffunction-sections -fdata-sections EXTRA_CFLAGS += $(TARGET_CPPFLAGS) CONFIGURE_ARGS += \ @@ -59,6 +60,7 @@ define Build/Compile CC="$(TARGET_CC)" \ DESTDIR="$(PKG_INSTALL_DIR)" \ HOST_CPU="$(PKGARCH)" \ + LDFLAGS="-Wl,--gc-sections" \ all install endef @@ -77,8 +79,6 @@ define Build/InstallDev endef -HOST_BUILD_DEPENDS:=libtool/host - HOST_CONFIGURE_ARGS+= \ --disable-curl \ --disable-gpg \