X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=doc%2FMakefile;fp=doc%2FMakefile;h=ad31590c1d03bfe214ab315b2d22e50209a65e6d;hb=98cf9b123a591c304cb298d3f4c7796a0761b41d;hp=f31c755d79675d9bc9747b41f07a59707628422a;hpb=dea46c447f6688f1519a6fbe7f5998d0eab7474c;p=clsql.git diff --git a/doc/Makefile b/doc/Makefile index f31c755..ad31590 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -23,16 +23,21 @@ DOCFILE_EXT_DEFAULT:=xml DEBIAN=$(shell expr "`cat /etc/issue`" : '.*Debian.*') SUSE=$(shell expr "`cat /etc/issue`" : '.*SuSE.*') +SUSE91=$(shell expr "`cat /etc/issue`" : '.*SuSE Linux 9.1.*') REDHAT=$(shell expr "`cat /etc/issue`" : '.*RedHat.*') ifneq (${DEBIAN},0) OS:=debian else - ifneq (${SUSE},0) - OS=suse - else - ifneq (${REDHAT},0) - OS=redhat + ifneq (${SUSE91},0) + OS=suse91 + else + ifneq (${SUSE},0) + OS=suse + else + ifneq (${REDHAT},0) + OS=redhat + endif endif endif endif