From 499ffcbff52c7e28a7ba27936227ae1e44190fdb Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Fri, 12 Dec 2008 03:38:56 +0100 Subject: [PATCH] better build dynamic libs into ./.libs add a symlink bin/.libs -> ../libs for running from within bin/ --- SConstruct | 2 +- bin/.libs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 120000 bin/.libs diff --git a/SConstruct b/SConstruct index 26c1795c6..0d7b654f5 100644 --- a/SConstruct +++ b/SConstruct @@ -27,7 +27,7 @@ OPTIONSCACHEFILE = 'optcache' CUSTOPTIONSFILE = 'custom-options' SRCDIR = 'src' BINDIR = 'bin' -LIBDIR = 'bin/.libs' +LIBDIR = '.libs' TESTDIR = 'tests' ICONDIR = 'icons' VERSION = '0.1+pre.01' diff --git a/bin/.libs b/bin/.libs new file mode 120000 index 000000000..2e321a8e9 --- /dev/null +++ b/bin/.libs @@ -0,0 +1 @@ +../.libs \ No newline at end of file