diff options
author | Raphaël Hertzog <hertzog@debian.org> | 2018-02-14 18:49:36 +0100 |
---|---|---|
committer | Raphaël Hertzog <hertzog@debian.org> | 2018-02-14 18:49:36 +0100 |
commit | 96e73960b3e64bae81294250e5ad531212ef0ac1 (patch) | |
tree | c076cf9fea096076f5b2fe8db158345feab0fec8 | |
parent | bf73aede691bb22a3b594de75e9d5a5f73e65373 (diff) | |
download | vyos-live-build-96e73960b3e64bae81294250e5ad531212ef0ac1.tar.gz vyos-live-build-96e73960b3e64bae81294250e5ad531212ef0ac1.zip |
Fix Check_package invocation in binary_hdd for ntfs-3g
/sbin/mkfs.nfts -> /sbin/mkfs.ntfs
-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 |