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

@ -86,7 +86,7 @@ def build(bld):
obj.name = 'libcanvas'
obj.target = 'canvas'
obj.vnum = CANVAS_LIB_VERSION
obj.install_path = os.path.join(bld.env['LIBDIR'])
obj.install_path = bld.env['LIBDIR']
obj.defines += [ 'PACKAGE="' + I18N_PACKAGE + '"' ]
if bld.env['BUILD_TESTS'] and bld.env['HAVE_CPPUNIT']: