diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-02-22 04:37:20 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-02-22 04:37:20 +0000 |
commit | b892e1fb855de59ce8e81881526ede35df1ae3fd (patch) | |
tree | 8497134d453d336d68b5dbf67d9b6b719ed2145e /tools/ipkg-utils | |
parent | 67c9c212e61d7ce11aa22e3ac5f7a109c134c0d1 (diff) | |
download | upstream-b892e1fb855de59ce8e81881526ede35df1ae3fd.tar.gz upstream-b892e1fb855de59ce8e81881526ede35df1ae3fd.tar.bz2 upstream-b892e1fb855de59ce8e81881526ede35df1ae3fd.zip |
build system refactoring in preparation for allowing packages to do host-build steps
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14610 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/ipkg-utils')
-rw-r--r-- | tools/ipkg-utils/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/ipkg-utils/Makefile b/tools/ipkg-utils/Makefile index 830d38a7c4..48eb7e3795 100644 --- a/tools/ipkg-utils/Makefile +++ b/tools/ipkg-utils/Makefile @@ -16,16 +16,16 @@ PKG_CAT:=zcat include $(INCLUDE_DIR)/host-build.mk -define Build/Install +define Host/Install $(INSTALL_BIN) \ - $(PKG_BUILD_DIR)/ipkg-build \ - $(PKG_BUILD_DIR)/ipkg-buildpackage \ - $(PKG_BUILD_DIR)/ipkg-make-index \ - $(PKG_BUILD_DIR)/ipkg.py \ + $(HOST_BUILD_DIR)/ipkg-build \ + $(HOST_BUILD_DIR)/ipkg-buildpackage \ + $(HOST_BUILD_DIR)/ipkg-make-index \ + $(HOST_BUILD_DIR)/ipkg.py \ $(STAGING_DIR_HOST)/bin/ endef -define Build/Clean +define Host/Clean rm -f $(STAGING_DIR)/etc/ipkg.conf rm -f $(STAGING_DIR_HOST)/bin/ipkg* endef |