File: 0001-Fix-mkntfs-path.patch

package info (click to toggle)
wimlib 1.13.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,012 kB
  • sloc: ansic: 49,012; sh: 6,737; asm: 389; makefile: 299
file content (21 lines) | stat: -rw-r--r-- 584 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Hilko Bengen <bengen@debian.org>
Date: Wed, 29 Jul 2015 23:57:50 +0200
Subject: Fix mkntfs path

---
 tests/test-imagex-ntfs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/test-imagex-ntfs b/tests/test-imagex-ntfs
index f22198f..635c73f 100755
--- a/tests/test-imagex-ntfs
+++ b/tests/test-imagex-ntfs
@@ -59,7 +59,7 @@ do_mount() {
 }
 
 do_mkntfs() {
-	if ! mkntfs --force --fast $1 > /dev/null; then
+	if ! /sbin/mkntfs --force --fast $1 > /dev/null; then
 		error "Could not create NTFS volume \"$1\"!  Make sure ntfsprogs are installed."
 	fi
 }