build: fix contrib library paths broken due to r13485 (c174ebd0)

This commit is contained in:
Tom Henderson
2018-05-03 13:39:50 -07:00
parent 8da38f9a00
commit c91797f23e

View File

@@ -48,7 +48,7 @@ def create_ns3_module(bld, name, dependencies=(), test=False):
module = bld(features='cxx cxxstlib ns3module')
else:
module = bld(features='cxx cxxshlib ns3module')
module.target = '%s/ns%s-%s%s' % (bld.srcnode.path_from(module.path), wutils.VERSION,
module.target = '%s/lib/ns%s-%s%s' % (bld.srcnode.path_from(module.path), wutils.VERSION,
name, bld.env.BUILD_SUFFIX)
linkflags = []
cxxflags = []