blob: d9e475f86a2a39847f9d2b5ec159e6a0555fe3f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
From: =?UTF-8?q?Rog=C3=A9rio=20Brito?= <rbrito@ime.usp.br>
Date: Thu, 24 Oct 2013 01:11:21 -0200
Subject: Fix path for HFS wrapper block
Fix the installation of the HFS wrapper block to be compliant in Linux
systems (since it is arch independent).
---
newfs_hfs.tproj/makehfs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/newfs_hfs.tproj/makehfs.c
+++ b/newfs_hfs.tproj/makehfs.c
@@ -86,7 +86,7 @@ extern Boolean _CFStringGetFileSystemRep
#include "newfs_hfs.h"
-#define HFS_BOOT_DATA "/usr/share/misc/hfsbootdata"
+#define HFS_BOOT_DATA "/usr/share/hfsprogs/hfsbootdata"
#define HFS_JOURNAL_FILE ".journal"
#define HFS_JOURNAL_INFO ".journal_info_block"
|