mirror of
https://github.com/openwrt/packages.git
synced 2026-06-10 11:48:40 +04:00
636c12c124
The recent commit 048a5088c5 updated
scons to 4.10.1, but neglected to correct a version related path in
a patch. This fixes that oversight, so that scons hostpkg builds
again. Also, fix up fuzz in the patches.
Signed-off-by: Russell Senior <russell@personaltelco.net>
11 lines
274 B
Diff
11 lines
274 B
Diff
--- a/scons.py
|
|
+++ b/scons.py
|
|
@@ -57,6 +57,7 @@ if script_path in sys.path:
|
|
sys.path.remove(script_path)
|
|
|
|
libs = []
|
|
+libs = [os.path.join(os.path.dirname(script_dir), 'lib', 'scons')]
|
|
|
|
if "SCONS_LIB_DIR" in os.environ:
|
|
libs.append(os.environ["SCONS_LIB_DIR"])
|