Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
AWehrhahn committed Dec 16, 2020
1 parent fc5c5ad commit d88fb00
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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@
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ case $target_os in
;;
win32|mingw32)
target=win32
extension=.dll
extension=-3.dll
outdir=bindir
;;
*)
Expand Down

0 comments on commit d88fb00

Please sign in to comment.