summaryrefslogtreecommitdiff
path: root/libs/audiographer
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-04-28 21:18:02 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-04-28 21:18:02 -0400
commit1b989a93c23171f58dd639d320afc704335e8720 (patch)
treed13fbe9a907cb734e9f6b479b7fae7d6c5c9accf /libs/audiographer
parent058986f77b25685fe871bf5459da3f9c4ea03b5a (diff)
remove redundant os.path.join() calls when specifying install path as bld.env['LIBDIR']
Diffstat (limited to 'libs/audiographer')
-rw-r--r--libs/audiographer/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/audiographer/wscript b/libs/audiographer/wscript
index d7f4eda0d1..2fe2739741 100644
--- a/libs/audiographer/wscript
+++ b/libs/audiographer/wscript
@@ -82,7 +82,7 @@ def build(bld):
audiographer.uselib = 'GLIB GLIBMM GTHREAD SAMPLERATE SNDFILE'
audiographer.use = 'libpbd'
audiographer.vnum = AUDIOGRAPHER_LIB_VERSION
- audiographer.install_path = os.path.join(bld.env['LIBDIR'])
+ audiographer.install_path = bld.env['LIBDIR']
if bld.env['BUILD_TESTS'] and bld.is_defined('HAVE_CPPUNIT'):