aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-09-16 13:59:49 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2018-09-16 14:00:18 -0700
commit965806f087f2975a8211cd36c9b3702efc83731a (patch)
tree5a83a1426a81d0b0089580d9156de701feaae1e4
parentf9665d0f4a2fe9d6aed272ffb4c9b618593249d7 (diff)
downloadpandoc-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.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b0daab698..21e490ced 100644
--- a/Makefile
+++ b/Makefile
@@ -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 $@ ../../ && \