diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-03-25 15:46:01 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-03-25 15:46:01 +0000 |
commit | fe12a4db56950f94089d63a8da1c73231878bc30 (patch) | |
tree | 5e9af6947cd1d816400cf2824d1071d1f397335e /openwrt/package | |
parent | 3c2c7ad8a3d112b56da1d5da38de036511fc8f5b (diff) | |
download | mtk-20170518-fe12a4db56950f94089d63a8da1c73231878bc30.zip mtk-20170518-fe12a4db56950f94089d63a8da1c73231878bc30.tar.gz mtk-20170518-fe12a4db56950f94089d63a8da1c73231878bc30.tar.bz2 |
fix cifsmount (use TARGET_CC instead of CC)
SVN-Revision: 454
Diffstat (limited to 'openwrt/package')
-rw-r--r-- | openwrt/package/cifsmount/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/openwrt/package/cifsmount/Makefile b/openwrt/package/cifsmount/Makefile index cc12c93..0fa6a1f 100644 --- a/openwrt/package/cifsmount/Makefile +++ b/openwrt/package/cifsmount/Makefile @@ -4,7 +4,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=cifsmount PKG_VERSION:=1.5 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_BUILD_DIR:=$(BUILD_DIR)/cifsmount PKG_IPK_DIR:=$(PKG_BUILD_DIR) @@ -12,7 +12,8 @@ PKG_IPK:=$(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk $(PKG_BUILD_DIR)/sbin/mount.cifs: mkdir -p $(PKG_BUILD_DIR)/sbin - $(CC) -o $(PKG_BUILD_DIR)/sbin/mount.cifs mount.cifs.c + $(TARGET_CC) -o $@ mount.cifs.c + $(STRIP) $@ $(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) |