diff options
author | Rosen Penev <rosenp@gmail.com> | 2022-02-24 20:27:34 -0800 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2022-03-01 00:08:08 +0100 |
commit | c8b7065f61b75cab17b3b39c5091aa8de14f0aa8 (patch) | |
tree | 22d24a2dc7e876984fba81154eacdd49ccd87f7d /tools/mklibs/patches/003-no_copy.patch | |
parent | 038d5bdab117e4c618442dfc96858263dd1ee72e (diff) | |
download | upstream-c8b7065f61b75cab17b3b39c5091aa8de14f0aa8.tar.gz upstream-c8b7065f61b75cab17b3b39c5091aa8de14f0aa8.tar.bz2 upstream-c8b7065f61b75cab17b3b39c5091aa8de14f0aa8.zip |
tools/mklibs: update to 0.1.45
Refresh 2to3 patch. Upstream partially did this against some older
python version. This is still needed.
Refreshed other patches to be python3 safe.
Remove uClibc patches as only musl is present now.
Refresh others.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'tools/mklibs/patches/003-no_copy.patch')
-rw-r--r-- | tools/mklibs/patches/003-no_copy.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/mklibs/patches/003-no_copy.patch b/tools/mklibs/patches/003-no_copy.patch index 75beccf82e..bc1ae8d73d 100644 --- a/tools/mklibs/patches/003-no_copy.patch +++ b/tools/mklibs/patches/003-no_copy.patch @@ -32,11 +32,11 @@ - dest_path + "/" + so_file_name + "-so", - dest_path + "/" + so_file_name + "-so-stripped") ## DEBUG - debug(DEBUG_VERBOSE, so_file, "\t", `os.stat(so_file)[ST_SIZE]`) + debug(DEBUG_VERBOSE, so_file, "\t", str(os.stat(so_file)[ST_SIZE])) debug(DEBUG_VERBOSE, dest_path + "/" + so_file_name + "-so", "\t", - `os.stat(dest_path + "/" + so_file_name + "-so")[ST_SIZE]`) + str(os.stat(dest_path + "/" + so_file_name + "-so")[ST_SIZE])) - debug(DEBUG_VERBOSE, dest_path + "/" + so_file_name + "-so-stripped", -- "\t", `os.stat(dest_path + "/" + so_file_name + "-so-stripped")[ST_SIZE]`) +- "\t", str(os.stat(dest_path + "/" + so_file_name + "-so-stripped")[ST_SIZE])) # Finalising libs and cleaning up -for lib in regexpfilter(os.listdir(dest_path), "(.*)-so-stripped$"): |