From 90d2fc50e9fffe978d7c23f79204e0f2f7f8f0f0 Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Mon, 4 Dec 2006 10:34:02 +0100 Subject: [PATCH] make sure cairo internal header is installed when needed. --- SConstruct | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index 0451abe38..60f5efe54 100644 --- a/SConstruct +++ b/SConstruct @@ -78,8 +78,10 @@ if high_precision_as_double == 'y': simu.add_inst_header ('high-precision-double.h') simu.add_source ('high-precision-double.cc') else: - simu.add_inst_header ('high-precision-128.h') - simu.add_header ('cairo-wideint-private.h') + simu.add_inst_headers ([ + 'high-precision-128.h', + 'cairo-wideint-private.h' + ]) simu.add_sources ([ 'high-precision-128.cc', 'cairo-wideint.c',