From f1fee377ec7b2bd524e9320b26d7e1e9acbc06bf Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Mon, 8 Nov 2010 12:02:43 -0800 Subject: [PATCH] fix modularity issue with core module --- src/core/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/wscript b/src/core/wscript index ae8b29f56..7ca9c388d 100644 --- a/src/core/wscript +++ b/src/core/wscript @@ -155,5 +155,5 @@ def build(bld): ]) if bld.env['ENABLE_GSL']: - core.uselib = 'GSL GSLCBLAS M' + core.uselib = core.uselib + ' GSL GSLCBLAS M' core.source.extend(['rng-test-suite.cc'])