Fix compiler flags (missing space)

This commit is contained in:
Moritz Bunkus 2012-09-30 21:12:56 +02:00
parent 2c36e82c93
commit 41da46b5d5

View File

@ -88,7 +88,7 @@ def setup_globals
$build_tools ||= c?(:TOOLS)
cflags_common = "-Wall -Wno-comment -Wfatal-errors"
cflags_common = "-Wall -Wno-comment -Wfatal-errors "
cflags_common += "#{c(:OPTIMIZATION_CFLAGS)} -D_FILE_OFFSET_BITS=64 #{c(:MATROSKA_CFLAGS)} #{c(:EBML_CFLAGS)} #{c(:EXTRA_CFLAGS)} #{c(:DEBUG_CFLAGS)} #{c(:PROFILING_CFLAGS)} #{c(:USER_CPPFLAGS)} "
cflags_common += "-DPACKAGE=\\\"#{c(:PACKAGE)}\\\" -DVERSION=\\\"#{c(:VERSION)}\\\" -DMTX_LOCALE_DIR=\\\"#{c(:localedir)}\\\" -DMTX_PKG_DATA_DIR=\\\"#{c(:pkgdatadir)}\\\" -DMTX_DOC_DIR=\\\"#{c(:docdir)}\\\" "
cflags_common += "#{c(:QUNUSED_ARGUMENTS)}"