diff options
| author | Nicolas Thill <nico@openwrt.org> | 2005-03-06 12:03:54 +0000 |
|---|---|---|
| committer | Nicolas Thill <nico@openwrt.org> | 2005-03-06 12:03:54 +0000 |
| commit | 234b39a199c12c69fd68680e7057e73326fc2cb4 (patch) | |
| tree | a0d55a1af9452553547e40d42830c4669d9943d3 /openwrt/package/arptables | |
| parent | 77ac9d2c485b05517f86e01d8bf210d8bb957ed7 (diff) | |
| download | mtk-20170518-234b39a199c12c69fd68680e7057e73326fc2cb4.zip mtk-20170518-234b39a199c12c69fd68680e7057e73326fc2cb4.tar.gz mtk-20170518-234b39a199c12c69fd68680e7057e73326fc2cb4.tar.bz2 | |
Add package install dependencies (don't install a package if it's already installed)
SVN-Revision: 315
Diffstat (limited to 'openwrt/package/arptables')
| -rw-r--r-- | openwrt/package/arptables/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/openwrt/package/arptables/Makefile b/openwrt/package/arptables/Makefile index d6af30f..03c6322 100644 --- a/openwrt/package/arptables/Makefile +++ b/openwrt/package/arptables/Makefile @@ -34,10 +34,13 @@ $(PKG_IPK): $(PKG_BUILD_DIR)/arptables mkdir -p $(PACKAGE_DIR) $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) +$(IPKG_STATE_DIR)/info/arptables.list: $(PKG_IPK) + $(IPKG) install $(PKG_IPK) + source: $(DL_DIR)/$(PKG_SOURCE) prepare: $(PKG_BUILD_DIR)/.unpacked compile: $(PKG_IPK) -install: - $(IPKG) install $(PKG_IPK) +install: $(IPKG_STATE_DIR)/info/arptables.list + clean: rm -rf $(PKG_BUILD_DIR) |
