From 3cbc735cfb5ee9e52c7bc865dece7ed746816045 Mon Sep 17 00:00:00 2001 From: Matthias Reichl Date: Mon, 8 Jan 2024 14:30:00 +0100 Subject: [PATCH] udevil: fix mount call in mount.ntfs helper script The documented format of the -t option is "-t type", not "-ttype". Signed-off-by: Matthias Reichl --- packages/sysutils/udevil/package.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sysutils/udevil/package.mk b/packages/sysutils/udevil/package.mk index 0a94c8c29f..a8acf2f6a3 100644 --- a/packages/sysutils/udevil/package.mk +++ b/packages/sysutils/udevil/package.mk @@ -30,7 +30,7 @@ post_makeinstall_target() { cp -PR src/udevil ${INSTALL}/usr/bin mkdir -p ${INSTALL}/usr/sbin - echo -e '#!/bin/sh\nexec /usr/bin/mount -tntfs3 "$@"' > ${INSTALL}/usr/sbin/mount.ntfs + echo -e '#!/bin/sh\nexec /usr/bin/mount -t ntfs3 "$@"' > ${INSTALL}/usr/sbin/mount.ntfs chmod 755 ${INSTALL}/usr/sbin/mount.ntfs }