diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2023-11-23 18:45:46 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2023-11-29 12:33:24 +0100 |
commit | 1c037dcd057024a004233559061f6bf0d4766763 (patch) | |
tree | c8ea540243d6d127c2f86f107af87a2538dac74b /src/tools | |
parent | a2b06c3dca54c086cbd874c9547e281205a4ebc5 (diff) | |
download | bootstrappable-toolchain-1c037dcd057024a004233559061f6bf0d4766763.tar.gz |
Remove unnecessary copies
... now that we retain (non-upwards) symlinks, make use of
them.
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/python-3.12.TARGETS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/python-3.12.TARGETS b/src/tools/python-3.12.TARGETS index 625bac4..fb74882 100644 --- a/src/tools/python-3.12.TARGETS +++ b/src/tools/python-3.12.TARGETS @@ -29,7 +29,7 @@ , "find ./bin -type f -name '*-config' -exec sh -c \"sed -i 's|${ACTION_DIR}|/build|g' {}\" \\;" , "find ./lib -type f -name 'Makefile' -exec sh -c \"sed -i 's|${ACTION_DIR}|/build|g' {}\" \\;" , "find ./lib -type f -name '_sysconfigdata_*' -exec sh -c \"sed -i 's|${ACTION_DIR}|/build|g' {}\" \\;" - , "cp -l bin/python3 bin/python" + , "ln -s python3 bin/python" ] , "out_dirs": ["."] } |