remove redundant os.path.join() calls when specifying install path as bld.env['LIBDIR']

This commit is contained in:
Paul Davis 2014-04-28 21:18:02 -04:00
parent 937c0764be
commit 1c84289254
10 changed files with 11 additions and 11 deletions

View file

@ -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']