Fix for missing /usr/games in root's PATH
After importing the default environment from NetBSD, we discovered that it doesn't contain /usr/games, which is required for the commands strfile. This utility is used while generating fortune database. This patch simply sets TOOL_STRFILE to contain an absolute path. Change-Id: I2e366a0b67d5258f387c3f5a2a2a581fedead359
This commit is contained in:
parent
aa4ee93d43
commit
db1ca87b7d
1 changed files with 4 additions and 0 deletions
|
@ -649,7 +649,11 @@ TOOL_SED= sed
|
|||
TOOL_SOELIM= soelim
|
||||
TOOL_SPARKCRC= sparkcrc
|
||||
TOOL_STAT= stat
|
||||
.if defined(__MINIX)
|
||||
TOOL_STRFILE= /usr/games/strfile
|
||||
.else
|
||||
TOOL_STRFILE= strfile
|
||||
.endif # defined(__MINIX)
|
||||
TOOL_SUNLABEL= sunlabel
|
||||
TOOL_TBL= tbl
|
||||
.if defined(__MINIX)
|
||||
|
|
Loading…
Reference in a new issue