From d88fb00fc52a26be0039f1e400bf005a3747aba3 Mon Sep 17 00:00:00 2001 From: Ansgar Wehrhahn <31626864+AWehrhahn@users.noreply.github.com> Date: Wed, 16 Dec 2020 18:14:16 +0100 Subject: [PATCH] bugfix --- .github/workflows/make.yml | 2 +- Makefile.am | 2 +- configure.ac | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index 6d35b7b..880db5d 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -185,7 +185,7 @@ jobs: - name: Copy libgfortran if: matrix.name == 'ubuntu-gfortran' || matrix.name == 'macos-gfortran' || matrix.name == 'windows-gfortran' - run: cp $(ls $(make -s flib_source)$(make -s flib_name)) $(make -s flib_target) + run: cp $(make -s flib_source) $(make -s flib_target) - name: Zip data # This would actually build your project, using zip for an example artifact run: zip -r ${{ matrix.name }} ${{ matrix.outputs }} diff --git a/Makefile.am b/Makefile.am index 5844845..3578011 100644 --- a/Makefile.am +++ b/Makefile.am @@ -47,7 +47,7 @@ flib_name: echo libgfortran*@EXTENSION@ flib_source: - $(F77) --print-file-name= + $(F77) --print-file-name=libgfortran@EXTENSION@ flib_target: echo $(@OUTPUT_DIR@)/libgfortran@EXTENSION@ \ No newline at end of file diff --git a/configure.ac b/configure.ac index 4c9fd59..583ca5c 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ case $target_os in ;; win32|mingw32) target=win32 - extension=.dll + extension=-3.dll outdir=bindir ;; *)