Merge pull request #3 from marineam/tests
tests: fix path to words file on Gentoo/CoreOS
This commit is contained in:
commit
7ac3d8a7bf
1 changed files with 3 additions and 1 deletions
|
@ -230,8 +230,10 @@ for ((LOGSECSIZE=MINLOGSECSIZE;LOGSECSIZE<=MAXLOGSECSIZE;LOGSECSIZE=LOGSECSIZE +
|
||||||
CFILESN=1
|
CFILESN=1
|
||||||
if test -f /usr/share/dict/american-english; then
|
if test -f /usr/share/dict/american-english; then
|
||||||
CFILESSRC[0]="/usr/share/dict/american-english"
|
CFILESSRC[0]="/usr/share/dict/american-english"
|
||||||
else
|
elif test -f /usr/share/dict/linux.words; then
|
||||||
CFILESSRC[0]="/usr/share/dict/linux.words"
|
CFILESSRC[0]="/usr/share/dict/linux.words"
|
||||||
|
else
|
||||||
|
CFILESSRC[0]="/usr/share/dict/words"
|
||||||
fi
|
fi
|
||||||
case x"$fs" in
|
case x"$fs" in
|
||||||
# FS LIMITATION: 8.3 names
|
# FS LIMITATION: 8.3 names
|
||||||
|
|
Loading…
Reference in a new issue