diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2016-06-21 08:33:50 +0200 |
---|---|---|
committer | Álvaro Fernández Rojas <noltari@gmail.com> | 2016-07-04 12:12:27 +0200 |
commit | a1b52e2b53f20e39894e5e80e7fc08c1950d9224 (patch) | |
tree | 1942a65d8828a7ed4227b4b8044ed461bc4f652d /tools/dosfstools/Makefile | |
parent | 39a229ed4b76434df5178cd73401918dec275653 (diff) | |
download | upstream-a1b52e2b53f20e39894e5e80e7fc08c1950d9224.tar.gz upstream-a1b52e2b53f20e39894e5e80e7fc08c1950d9224.tar.bz2 upstream-a1b52e2b53f20e39894e5e80e7fc08c1950d9224.zip |
dosfstools: update to v4.0
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Diffstat (limited to 'tools/dosfstools/Makefile')
-rw-r--r-- | tools/dosfstools/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/dosfstools/Makefile b/tools/dosfstools/Makefile index 910e94f722..56a9aa5e87 100644 --- a/tools/dosfstools/Makefile +++ b/tools/dosfstools/Makefile @@ -1,5 +1,6 @@ # # Copyright (C) 2012-2015 OpenWrt.org +# Copyright (C) 2016 LEDE-Project.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -7,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=dosfstools -PKG_VERSION:=3.0.27 +PKG_VERSION:=4.0 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/dosfstools/dosfstools/releases/download/v$(PKG_VERSION)/ \ http://fossies.org/linux/misc -PKG_MD5SUM:=2e31e7bdf92998e41ed17de505a4a552 +PKG_MD5SUM:=d96f46cbc5b84ad4c9766b4fbf6c8e09 HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION) @@ -27,7 +28,7 @@ define Host/Compile endef define Host/Install - $(INSTALL_BIN) $(HOST_BUILD_DIR)/mkfs.fat $(STAGING_DIR_HOST)/bin/ + $(INSTALL_BIN) $(HOST_BUILD_DIR)/src/mkfs.fat $(STAGING_DIR_HOST)/bin/ $(LN) mkfs.fat $(STAGING_DIR_HOST)/bin/mkdosfs endef |