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:
parent
d14e55cc61
commit
a5a031c8ff
|
@ -62,9 +62,9 @@ setQMakePath() {
|
||||||
|
|
||||||
wrapQtProgram() {
|
wrapQtProgram() {
|
||||||
wrapProgram "$1" \
|
wrapProgram "$1" \
|
||||||
--set QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \
|
--set QT_PLUGIN_PATH "$QT_PLUGIN_PATH" \
|
||||||
--set QML_IMPORT_PATH : "$QML_IMPORT_PATH" \
|
--set QML_IMPORT_PATH "$QML_IMPORT_PATH" \
|
||||||
--set QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \
|
--set QML2_IMPORT_PATH "$QML2_IMPORT_PATH" \
|
||||||
"$@"
|
"$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue