changeset 29925:53de043ea532

GitHub-CI: Remove obsolete hack in MSYS2 rules for error fixed upstream. * .github/workflows/make.yaml (windows): No longer override FLTK_LIBS in "make" step. FLTK was updated to 1.3.6 in MSYS2 which makes this hack obsolete.
author Markus Mützel <markus.muetzel@gmx.de>
date Wed, 28 Jul 2021 21:28:20 +0200
parents aeba7278cf80
children 6a39ac893c9d
files .github/workflows/make.yaml
diffstat 1 files changed, 1 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/make.yaml	Wed Jul 28 00:28:26 2021 -0400
+++ b/.github/workflows/make.yaml	Wed Jul 28 21:28:20 2021 +0200
@@ -407,11 +407,8 @@
 
       - name: build
         # Spawning processes seems to have a big overhead on this platform. Use a somewhat larger number of parallel processes to compensate for that.
-        # MSYS2's "fltk-config" returns wrong LIBS. Override them for make.
-        # See: https://github.com/msys2/MINGW-packages/issues/8806
         run: |
-          make -C ./.build all -j8 V=1 \
-            FLTK_LIBS="-lfltk_gl -lopengl32 -lglu32 -lfltk -lpthread"
+          make -C ./.build all -j8 V=1
 
       - name: ccache status
         continue-on-error: true