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 058986f77b
commit 1b989a93c2
10 changed files with 11 additions and 11 deletions

View file

@ -53,7 +53,7 @@ def build(bld):
obj.name = 'libqmdsp'
obj.target = 'qmdsp'
obj.vnum = QM_DSP_VERSION
obj.install_path = os.path.join(bld.env['LIBDIR'])
obj.install_path = bld.env['LIBDIR']
def shutdown():
autowaf.shutdown()