|
|
| 892 |
if not dep.startswith('ns3-'): |
892 |
if not dep.startswith('ns3-'): |
| 893 |
continue |
893 |
continue |
| 894 |
if dep not in modules and dep not in contribModules: |
894 |
if dep not in modules and dep not in contribModules: |
| 895 |
if dep in env['NS3_MODULES']: modules.append(dep) |
895 |
if dep in env['NS3_MODULES']: |
| 896 |
elif dep in env['NS3_CONTRIBUTED_MODULES']: contribModules.append(dep) |
896 |
modules.append(dep) |
| 897 |
changed = True |
897 |
changed = True |
|
|
898 |
elif dep in env['NS3_CONTRIBUTED_MODULES']: |
| 899 |
contribModules.append(dep) |
| 900 |
changed = True |
| 901 |
else: |
| 902 |
Logs.error("One of the dependencies of " + module + " could not be found. " |
| 903 |
+ "Check the wscript of " + module + " for spelling errors.") |
| 904 |
Logs.error("Dependencies: ") |
| 905 |
Logs.error(module_obj.use) |
| 906 |
raise SystemExit(1) |
| 898 |
|
907 |
|
| 899 |
env['NS3_ENABLED_MODULES'] = modules |
908 |
env['NS3_ENABLED_MODULES'] = modules |
| 900 |
|
909 |
|