- Refine previous commit: restore preference of jade over openjade when
both are present, provide OPENJADE var for overriding Requested by: ceri Approved by: keramida (mentor)
This commit is contained in:
parent
7ba400840e
commit
022732cd52
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=25516
1 changed files with 4 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
# bsd.web.mk
|
||||
# $FreeBSD: www/share/mk/web.site.mk,v 1.65 2005/03/01 23:04:59 simon Exp $
|
||||
# $FreeBSD: www/share/mk/web.site.mk,v 1.66 2005/08/23 11:12:21 pav Exp $
|
||||
|
||||
#
|
||||
# Build and install a web site.
|
||||
|
@ -50,10 +50,10 @@ TRUE?= /usr/bin/true
|
|||
LOCALBASE?= /usr/local
|
||||
PREFIX?= ${LOCALBASE}
|
||||
|
||||
.if exists(${PREFIX}/bin/osgmlnorm)
|
||||
SGMLNORM?= ${PREFIX}/bin/osgmlnorm
|
||||
.else
|
||||
.if exists(${PREFIX}/bin/sgmlnorm) && !defined(OPENJADE)
|
||||
SGMLNORM?= ${PREFIX}/bin/sgmlnorm
|
||||
.else
|
||||
SGMLNORM?= ${PREFIX}/bin/osgmlnorm
|
||||
.endif
|
||||
CATALOG?= ${PREFIX}/share/sgml/html/catalog
|
||||
SGMLNORMOPTS?= -d ${SGMLNORMFLAGS} -c ${CATALOG} -D ${.CURDIR}
|
||||
|
|
Loading…
Reference in a new issue