diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-04-11 01:35:26 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-04-11 01:35:26 +0000 |
commit | 435c5a51f570b29977a76cfd201720e30f54032c (patch) | |
tree | ce5450edcf08a10bd0d0c1b8b272262b5feb03bf /openwrt/package/cups/Makefile | |
parent | 724e47a55d109bb5cff1b9da87f50cdfb00fc373 (diff) | |
download | mtk-20170518-435c5a51f570b29977a76cfd201720e30f54032c.zip mtk-20170518-435c5a51f570b29977a76cfd201720e30f54032c.tar.gz mtk-20170518-435c5a51f570b29977a76cfd201720e30f54032c.tar.bz2 |
Fix cups install
SVN-Revision: 625
Diffstat (limited to 'openwrt/package/cups/Makefile')
-rw-r--r-- | openwrt/package/cups/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/openwrt/package/cups/Makefile b/openwrt/package/cups/Makefile index 33f2835..237773f 100644 --- a/openwrt/package/cups/Makefile +++ b/openwrt/package/cups/Makefile @@ -90,10 +90,14 @@ $(PKG_IPK): $(PKG_IPK_DIR)/usr/sbin/cupsd find $(PKG_IPK_DIR) -name CVS | xargs rm -rf $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) +$(IPKG_STATE_DIR)/info/$(PKG_NAME).list + $(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/$(PKG_NAME).list + clean: rm -rf $(PKG_BUILD_DIR) + rm -f $(PKG_IPK) |