wrapQtProgram: --set does not take separator

The --set flag to wrapProgram does not take a separator character, just
a value.
This commit is contained in:
Thomas Tuegel 2015-10-05 06:28:45 -05:00
parent d14e55cc61
commit a5a031c8ff

View File

@ -62,9 +62,9 @@ setQMakePath() {
wrapQtProgram() {
wrapProgram "$1" \
--set QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \
--set QML_IMPORT_PATH : "$QML_IMPORT_PATH" \
--set QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \
--set QT_PLUGIN_PATH "$QT_PLUGIN_PATH" \
--set QML_IMPORT_PATH "$QML_IMPORT_PATH" \
--set QML2_IMPORT_PATH "$QML2_IMPORT_PATH" \
"$@"
}