From 414c4d57515e37358c31195b676f382ac9ab7e34 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 6 Aug 2012 20:43:22 +0000 Subject: Copy headers when COPY_HEADERS is set and link otherwise (not the other way around). --- wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wscript b/wscript index fdc9dc8..bb5a34d 100644 --- a/wscript +++ b/wscript @@ -271,11 +271,11 @@ def build_ext(bld, path): headers = bld.path.ant_glob(path + '/*.h') if headers: if bld.env['COPY_HEADERS']: + bld.install_files(include_dir, headers) + else: bld.symlink_as(include_dir, os.path.relpath(bundle_dir, os.path.dirname(include_dir))) - else: - bld.install_files(include_dir, headers) def build(bld): exts = (bld.path.ant_glob('lv2/lv2plug.in/ns/ext/*', dir=True) + -- cgit v1.2.1