protect FC/CC/CXX exports in quotes to allow ccache; fixes #149

This commit is contained in:
Radovan Bast
2015-10-08 10:01:49 +02:00
parent d7019d7bec
commit b532d22168
3 changed files with 6 additions and 6 deletions

View File

@ -25,8 +25,8 @@
#
# docopt: --fc=<FC> Fortran compiler [default: gfortran].
# --extra-fc-flags=<EXTRA_FCFLAGS> Extra Fortran compiler flags [default: ''].
# export: 'FC=%s' % arguments['--fc']
# define: '-DEXTRA_FCFLAGS="%s"' % arguments['--extra-fc-flags']
# export: 'FC="{0}"'.format(arguments['--fc'])
# define: '-DEXTRA_FCFLAGS="{0}"'.format(arguments['--extra-fc-flags'])
enable_language(Fortran)