Home
last modified time | relevance | path

Searched refs:new_archive (Results 1 – 3 of 3) sorted by relevance

/external/elfutils/src/
Dmake-debug-archive.in118 new_archive="$archive.new"
120 new_archive="$outdir.a"
123 $RM -f "$new_archive" || exit
129 (cd "$outdir" && $LS | $XARGS $AR cq "$new_archive") &&
130 $sudo $MV -f "$new_archive" "$archive"
/external/python/cpython3/Lib/
Dzipapp.py53 def _copy_archive(archive, new_archive, interpreter=None): argument
64 with _maybe_open(new_archive, 'wb') as dst:
72 if interpreter and isinstance(new_archive, str):
73 os.chmod(new_archive, os.stat(new_archive).st_mode | stat.S_IEXEC)
/external/python/cpython3/Doc/library/
Dzipapp.rst216 >>> zipapp.create_archive('old_archive.pyz', 'new_archive.pyz', '/usr/bin/python3')