Commit b152b3c9a9d095730c2f8aa7a7ce64e195327bce

Authored by Jay Berkenbilt
1 parent 30ac51bc

Include manuals in windows distributions again (fixes #521)

.github/workflows/main.yml
... ... @@ -69,6 +69,7 @@ jobs:
69 69 uses: actions/download-artifact@v2
70 70 with:
71 71 name: distfiles
  72 + path: .
72 73 - name: 'Download external libs'
73 74 uses: actions/download-artifact@v2
74 75 with:
... ...
ChangeLog
1 1 2021-05-08 Jay Berkenbilt <ejb@ql.org>
2 2  
  3 + * Fix problem that caused the generated manual from being included
  4 + in the Windows distributions. Fixes #521.
  5 +
3 6 * Fix 11-year-old bug of leaving unreferenced objects in preserved
4 7 object streams. Fixes #520.
5 8  
... ...
build-scripts/build-windows
... ... @@ -20,9 +20,7 @@ if [[ $tool == mingw ]]; then
20 20 elif [[ $tool == msvc ]]; then
21 21 cl
22 22 fi
23   -if [ -f distfiles/distfiles.zip ]; then
24   - unzip distfiles/distfiles.zip
25   -fi
  23 +unzip distfiles.zip
26 24 unzip qpdf-external-libs-bin.zip
27 25 cwd=`pwd`
28 26 PATH=$cwd/libqpdf/build:$PATH
... ...