2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00

Automatically add library-path values to RUN_PATH/RUN_LD_LIBRARY_PATH

[SVN r17562]
This commit is contained in:
Dave Abrahams
2003-02-20 20:28:05 +00:00
parent 1f9d0bb196
commit 2663e73f1c
4 changed files with 46 additions and 5 deletions

View File

@@ -148,9 +148,13 @@ namespace
dict d;
d["__slots__"] = tuple();
d["values"] = dict();
object module_name = module_prefix();
if (module_name)
module_name += '.';
object result = (object(metatype))(
module_prefix() + name, make_tuple(base), d);
module_name + name, make_tuple(base), d);
scope().attr(name) = result;