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 | 95ab18e175d33954f8ce7d59af01eaf79767eaf4 (patch) | |
tree | 3d71937c64207297f0ce7fb2cbe33cd9a384b343 /package/dnsmasq/Makefile | |
parent | f03c7796adde4d9461ad53d236bd2f2e0fe6f4e2 (diff) | |
download | master-187ad058-95ab18e175d33954f8ce7d59af01eaf79767eaf4.tar.gz master-187ad058-95ab18e175d33954f8ce7d59af01eaf79767eaf4.tar.bz2 master-187ad058-95ab18e175d33954f8ce7d59af01eaf79767eaf4.zip |
Add package install dependencies (don't install a package if it's already installed)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@315 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/dnsmasq/Makefile')
-rw-r--r-- | package/dnsmasq/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/package/dnsmasq/Makefile b/package/dnsmasq/Makefile index 3b6acb49d9..899bad799f 100644 --- a/package/dnsmasq/Makefile +++ b/package/dnsmasq/Makefile @@ -35,11 +35,14 @@ $(PKG_IPK): $(PKG_BUILD_DIR)/src/$(PKG_NAME) mkdir -p $(PACKAGE_DIR) $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) +$(IPKG_STATE_DIR)/info/dnsmasq.list: $(PKG_IPK) + $(IPKG) install $(PKG_IPK) + source: $(DL_DIR)/$(PKG_SOURCE) prepare: $(PKG_BUILD_DIR)/.patched compile: $(PKG_IPK) -install: - $(IPKG) install $(PKG_IPK) +install: $(IPKG_STATE_DIR)/info/dnsmasq.list + clean: rm -rf $(PKG_BUILD_DIR) rm -f $(PKG_IPK) |