From 6f8af27833d0f956c183f77eb223415347627813 Mon Sep 17 00:00:00 2001 From: Radim Kolar Date: Mon, 8 Sep 2014 16:38:03 +0200 Subject: [PATCH] disable JADE if DSSSL are not found --- SConstruct | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SConstruct b/SConstruct index 6402741..8a377df 100644 --- a/SConstruct +++ b/SConstruct @@ -107,6 +107,8 @@ if JADE: DSSSL = conf.findDocbookStylesheets() else: DSSSL = None +if DSSSL == None: + JADE = False # Portability build time config if conf.CheckFunc('srandomdev'):