Have BFS create the BEOS:APP_SIG index by default also. Otherwise launching applications by signature off any partition other than one created via the build system will fail by default (since that one currently adds the index manually in build_haiku_image).
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29724 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
2016e43e55
commit
076cc460a0
@ -699,6 +699,10 @@ Volume::Initialize(int fd, const char* name, uint32 blockSize,
|
||||
if (status < B_OK)
|
||||
return status;
|
||||
|
||||
status = index.Create(transaction, "BEOS:APP_SIG", B_STRING_TYPE);
|
||||
if (status < B_OK)
|
||||
return status;
|
||||
|
||||
status = index.Create(transaction, "last_modified", B_INT64_TYPE);
|
||||
if (status < B_OK)
|
||||
return status;
|
||||
|
Loading…
Reference in New Issue
Block a user