Lines Matching +full:- +full:path
5 # SPDX-License-Identifier: GPL-2.0-or-later
15 def signcode(path): argument
19 subprocess.run([cmd, path])
23 output = subprocess.check_output(["objdump", "-p", exe_or_dll], text=True)
33 dll = os.path.join(search_path, dep)
34 if not os.path.exists(dll):
55 # canonicalize the Windows native prefix path
56 prefix = os.path.splitdrive(args.prefix)[1]
61 os.path.join(destdir + prefix, "system-emulations.nsh"), "w"
63 os.path.join(destdir + prefix, "system-mui-text.nsh"), "w"
66 os.path.join(destdir + prefix, "qemu-system-*.exe")
68 exe = os.path.basename(exe)
69 arch = exe[12:-4]
81 desc = arch[:-1] + " emulation (GUI)."
92 dlldir = os.path.join(destdir + prefix, "dll")
96 for exe in glob.glob(os.path.join(destdir + prefix, "*.exe")):
106 dllfile = os.path.join(dlldir, os.path.basename(dep))
112 "-V2",
113 "-NOCD",
114 "-DSRCDIR=" + args.srcdir,
115 "-DBINDIR=" + destdir + prefix,
118 makensis += ["-DW64"]
119 makensis += ["-DDLLDIR=" + dlldir]
121 makensis += ["-DOUTFILE=" + args.outfile] + args.nsisargs