aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index 60fad1d..f717921 100644
--- a/wscript
+++ b/wscript
@@ -227,14 +227,14 @@ def build(bld):
if bld.env.BUILD_SHARED:
bld(features = 'c cshlib',
name = name,
- target = 'pugl_' + name,
+ target = 'pugl_%s-%s' % (name, PUGL_MAJOR_VERSION),
defines = ['PUGL_INTERNAL', 'PUGL_SHARED'],
**args)
if bld.env.BUILD_STATIC:
bld(features = 'c cstlib',
name = 'pugl_%s_static' % name,
- target = 'pugl_' + name,
+ target = 'pugl_%s-%s' % (name, PUGL_MAJOR_VERSION),
defines = ['PUGL_INTERNAL', 'PUGL_DISABLE_DEPRECATED'],
**args)