Fixed incorrect use of 'test -a' (for FreeBSD).

This commit is contained in:
Frangois Gouget 2002-01-15 20:24:15 +00:00 committed by Alexandre Julliard
parent e0939a4995
commit acbbb2d5b9
1 changed files with 2 additions and 2 deletions

View File

@ -12,12 +12,12 @@
## $LINUXDIST holds the name of the distribution
## $JADETAG adds "/#html" to the stylesheet-specification in the Jade
## command line (see comments below), if necessary for that dist.
if [ -a /etc/debian_version ]; then
if [ -e /etc/debian_version ]; then
LINUXDIST="Debian"
JADETAG=\#html
fi
if [ -a /etc/redhat_release ]; then
if [ -e /etc/redhat_release ]; then
LINUXDIST="Redhat"
JADETAG=
fi