diff --git a/package/lean/ntfs3-mount/Makefile b/package/lean/ntfs3-mount/Makefile index b1a81d4e5..84fe0ed47 100644 --- a/package/lean/ntfs3-mount/Makefile +++ b/package/lean/ntfs3-mount/Makefile @@ -22,7 +22,7 @@ endef define Package/ntfs3-mount/install $(INSTALL_DIR) $(1)/sbin - $(INSTALL_BIN) ./files/mount.ntfs3 $(1)/sbin + $(INSTALL_BIN) ./files/mount.ntfs $(1)/sbin endef $(eval $(call BuildPackage,ntfs3-mount)) diff --git a/package/lean/ntfs3-mount/files/mount.ntfs b/package/lean/ntfs3-mount/files/mount.ntfs new file mode 100755 index 000000000..68b7a2e68 --- /dev/null +++ b/package/lean/ntfs3-mount/files/mount.ntfs @@ -0,0 +1,2 @@ +#!/bin/sh +mount -t ntfs3 -o iocharset=utf8 "$@" diff --git a/package/lean/ntfs3-mount/files/mount.ntfs3 b/package/lean/ntfs3-mount/files/mount.ntfs3 deleted file mode 100755 index 6a49e4440..000000000 --- a/package/lean/ntfs3-mount/files/mount.ntfs3 +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -mount -t ntfs3 -o nls=utf8 "$@"