diff options
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | scripts/build/binary_hdd | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index df6e1a4ce..026b0ce0d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,8 @@ live-build (1:20171208) UNRELEASED; urgency=medium consistent with the i386/amd64 autodetection entries. Closes: #884591 Thanks to Adrian Gibanel Lopez for the patch. * Add e2fsprogs to Suggests along with mtd-utils, parted. Closes: #887278 + * Fix Check_package invocation in binary_hdd for ntfs-3g + (/sbin/mkfs.nfts -> /sbin/mkfs.ntfs) -- Raphaƫl Hertzog <hertzog@debian.org> Thu, 21 Dec 2017 14:14:04 +0100 diff --git a/scripts/build/binary_hdd b/scripts/build/binary_hdd index c6b842e95..a0d45392b 100755 --- a/scripts/build/binary_hdd +++ b/scripts/build/binary_hdd @@ -50,7 +50,7 @@ case "${LB_BINARY_FILESYSTEM}" in ;; ntfs) - Check_package chroot /sbin/mkfs.nfts ntfs-3g + Check_package chroot /sbin/mkfs.ntfs ntfs-3g ;; esac |