From acbbb2d5b988e2929811754ac4a207822a6f1edb Mon Sep 17 00:00:00 2001 From: Frangois Gouget <fgouget@codeweavers.com> Date: Tue, 15 Jan 2002 20:24:15 +0000 Subject: [PATCH] Fixed incorrect use of 'test -a' (for FreeBSD). --- documentation/db2html-winehq | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/db2html-winehq b/documentation/db2html-winehq index bb9683eebdf..fb9d32ce353 100755 --- a/documentation/db2html-winehq +++ b/documentation/db2html-winehq @@ -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 -- GitLab