summaryrefslogtreecommitdiff
path: root/tools/sanity_check
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 /tools/sanity_check
parent058986f77b25685fe871bf5459da3f9c4ea03b5a (diff)
remove redundant os.path.join() calls when specifying install path as bld.env['LIBDIR']
Diffstat (limited to 'tools/sanity_check')
-rw-r--r--tools/sanity_check/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/sanity_check/wscript b/tools/sanity_check/wscript
index 7fa7045cee..000753e18b 100644
--- a/tools/sanity_check/wscript
+++ b/tools/sanity_check/wscript
@@ -20,4 +20,4 @@ def build(bld):
obj.source = [ 'main.cpp', 'systemtest.cpp' ]
obj.target = 'sanityCheck'
obj.name = 'sanityCheck'
- obj.install_path = os.path.join(bld.env['LIBDIR'])
+ obj.install_path = bld.env['LIBDIR']