diff options
author | Stefan Weil <sw@weilnetz.de> | 2020-11-17 20:06:40 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-11-18 09:28:55 +0100 |
commit | 933c8fe7814d481ad19ded7ff0b5b4389e5d3176 (patch) | |
tree | 84e8a3e9775a6bf75382335f185ba9bf2ab4682b /scripts/nsis.py | |
parent | 66a300a107ec286725bdc943601cbd4247b82158 (diff) |
meson: Fix argument for makensis (build regression)
`make installer` with a DLL directory was broken.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Message-Id: <20201117190640.390359-1-sw@weilnetz.de>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'scripts/nsis.py')
-rw-r--r-- | scripts/nsis.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nsis.py b/scripts/nsis.py index e1c409344e..5135a05831 100644 --- a/scripts/nsis.py +++ b/scripts/nsis.py @@ -65,7 +65,7 @@ def main(): dlldir = "w64" makensis += ["-DW64"] if os.path.exists(os.path.join(args.srcdir, "dll")): - makensis += "-DDLLDIR={0}/dll/{1}".format(args.srcdir, dlldir) + makensis += ["-DDLLDIR={0}/dll/{1}".format(args.srcdir, dlldir)] makensis += ["-DOUTFILE=" + args.outfile] + args.nsisargs subprocess.run(makensis) |