diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-08 03:57:04 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-08 03:57:04 +0000 |
commit | 15ea846c55e4a60051bce94d1b7d246f6043cc03 (patch) | |
tree | 780d6aeb6f5d7eebefb8d99ce7a1feedd72af9f1 /openwrt/package/popt/Makefile | |
parent | 03551923e584b760161ddea264ba377c50f1adbd (diff) |
Update popt release (fix ipkg/rules clean)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@348 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/popt/Makefile')
-rw-r--r-- | openwrt/package/popt/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/openwrt/package/popt/Makefile b/openwrt/package/popt/Makefile index ac05eb53c3..e00a10b49f 100644 --- a/openwrt/package/popt/Makefile +++ b/openwrt/package/popt/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME := popt PKG_VERSION := 1.7 -PKG_RELEASE := 2 +PKG_RELEASE := 3 PKG_SOURCE_SITE := ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.1.x/ PKG_SOURCE_FILE := $(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -39,8 +39,11 @@ compile: $(PKG_IPK) install: $(IPKG_STATE_DIR)/info/lib$(PKG_NAME).list clean: + -cd $(PKG_BUILD_DIR); \ + ipkg/rules \ + TOPDIR="$(TOPDIR)" IPKG_RULES_INC="$(TOPDIR)/rules.mk" \ + INSTALL_DIR="$(STAGING_DIR)" \ + clean rm -rf $(PKG_BUILD_DIR) - rm -f $(STAGING_DIR)/usr/include/popt.h - rm -f $(STAGING_DIR)/usr/lib/libpopt\* - rm -f $(PACKAGE_DIR)/lib$(PKG_NAME)\*.ipk + rm -r $(PKG_IPK) |