am a865f6d8
: fix mkbootfs for systems that lack PATH_MAX
* commit 'a865f6d85a52d0a77d1aef8d5fb5bece08e3b246': fix mkbootfs for systems that lack PATH_MAX
This commit is contained in:
commit
f3772351e7
1 changed files with 4 additions and 0 deletions
|
@ -44,7 +44,11 @@ static struct fs_config_entry* canned_config = NULL;
|
|||
|
||||
/* Each line in the canned file should be a path plus three ints (uid,
|
||||
* gid, mode). */
|
||||
#ifdef PATH_MAX
|
||||
#define CANNED_LINE_LENGTH (PATH_MAX+100)
|
||||
#else
|
||||
#define CANNED_LINE_LENGTH (1024)
|
||||
#endif
|
||||
|
||||
static int verbose = 0;
|
||||
static int total_size = 0;
|
||||
|
|
Loading…
Reference in a new issue