diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-25 15:46:01 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-25 15:46:01 +0000 |
commit | ecd71c30e232f17aadc87b7a05c99409f44fff45 (patch) | |
tree | 5e9af6947cd1d816400cf2824d1071d1f397335e /openwrt | |
parent | 3e0660b8b1dd3a360052d7944111640932a20dc4 (diff) |
fix cifsmount (use TARGET_CC instead of CC)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@454 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt')
-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 cc12c934c..0fa6a1fc8 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) |