Commit acbbb2d5 authored by Frangois Gouget's avatar Frangois Gouget Committed by Alexandre Julliard

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

parent e0939a49
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment