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

@ -21,8 +21,8 @@
#
# docopt: --cc=<CC> C compiler [default: gcc].
# --extra-cc-flags=<EXTRA_CFLAGS> Extra C compiler flags [default: ''].
# export: 'CC=%s' % arguments['--cc']
# define: '-DEXTRA_CFLAGS="%s"' % arguments['--extra-cc-flags']
# export: 'CC="{0}"'.format(arguments['--cc'])
# define: '-DEXTRA_CFLAGS="{0}"'.format(arguments['--extra-cc-flags'])
enable_language(C)