diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-09-16 13:59:49 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-09-16 14:00:18 -0700 |
commit | 965806f087f2975a8211cd36c9b3702efc83731a (patch) | |
tree | 5a83a1426a81d0b0089580d9156de701feaae1e4 /Makefile | |
parent | f9665d0f4a2fe9d6aed272ffb4c9b618593249d7 (diff) | |
download | pandoc-965806f087f2975a8211cd36c9b3702efc83731a.tar.gz |
Makefile: fix creation of windows zip.
This needed tweaking when the msi was fixed to be 64-bit,
so that 'Program Files (x86)' is used.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ winpkg: pandoc-$(version)-windows-i386.msi pandoc-$(version)-windows-i386.zip pa pandoc-$(version)-windows-%.zip: pandoc-$(version)-windows-%.msi -rm -rf wintmp && \ msiextract -C wintmp $< && \ - cd wintmp/"Program Files" && \ + cd wintmp/"Program Files*" && \ mv Pandoc pandoc-$(version) && \ zip -r $@ pandoc-$(version) && \ mv $@ ../../ && \ |