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