fixed paths to tap-creator and emu-sock-creator broken after modules move.

This commit is contained in:
Andrey Mazo
2011-05-19 20:36:05 +04:00
parent 86c3fc5845
commit ed617246da
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ def configure(conf):
if conf.env['ENABLE_EMU']:
blddir = os.path.abspath(os.path.join(conf.blddir, conf.env.variant()))
emucreatordir = os.path.abspath(os.path.join(blddir, "src/devices/emu"))
emucreatordir = os.path.abspath(os.path.join(blddir, "src/emu"))
conf.env.append_value('NS3_EXECUTABLE_PATH', emucreatordir)
def build(bld):

View File

@@ -16,7 +16,7 @@ def configure(conf):
if conf.env['ENABLE_TAP']:
blddir = os.path.abspath(os.path.join(conf.blddir, conf.env.variant()))
tapcreatordir = os.path.abspath(os.path.join(blddir, "src/devices/tap-bridge"))
tapcreatordir = os.path.abspath(os.path.join(blddir, "src/tap-bridge"))
conf.env.append_value('NS3_EXECUTABLE_PATH', tapcreatordir)
def build(bld):