diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-04-11 01:34:32 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-04-11 01:34:32 +0000 |
commit | c3824ca7aaef9f5c4731fdb4379f039464adb900 (patch) | |
tree | 35c8ca68949651ef5e85d09032087129343fa4f5 /package | |
parent | c9ccfe0b929ae6fe0b7832ac8763fe3080cba2ab (diff) | |
download | upstream-c3824ca7aaef9f5c4731fdb4379f039464adb900.tar.gz upstream-c3824ca7aaef9f5c4731fdb4379f039464adb900.tar.bz2 upstream-c3824ca7aaef9f5c4731fdb4379f039464adb900.zip |
Fix cifsmount install
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@624 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/cifsmount/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/package/cifsmount/Makefile b/package/cifsmount/Makefile index 0fa6a1fc8f..84c4564b6a 100644 --- a/package/cifsmount/Makefile +++ b/package/cifsmount/Makefile @@ -19,10 +19,14 @@ $(PKG_IPK): $(PKG_BUILD_DIR)/sbin/mount.cifs $(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) $(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR) +$(IPKG_STATE_DIR)/info/$(PKG_NAME).list + $(IPKG) install $(PKG_IPK) + source: prepare: 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) |