Qt: Use single-dash option for Qt4 compatibility

Change-Id: Ib8a52eca74ac63704a31b4b48da936abb6a6331b
Reviewed-on: https://code.wireshark.org/review/14511
Reviewed-by: João Valverde <j@v6e.pt>
This commit is contained in:
João Valverde 2016-03-18 03:42:29 +00:00 committed by João Valverde
parent 56c40dbf68
commit eb6abe3a75
1 changed files with 6 additions and 6 deletions

View File

@ -104,22 +104,22 @@ SUFFIXES = .moc.cpp
$(AM_V_MOC)$(MOC) $(MOC_OPTIONS) -I.. -I../.. -o $@ $<
qrc_about.cpp: ../../image/about.qrc
$(AM_V_RCC)$(RCC) $(RCC_OPTIONS) --name about -o $@ $<
$(AM_V_RCC)$(RCC) $(RCC_OPTIONS) -name about -o $@ $<
qrc_layout.cpp: ../../image/layout.qrc
$(AM_V_RCC)$(RCC) $(RCC_OPTIONS) --name layout -o $@ $<
$(AM_V_RCC)$(RCC) $(RCC_OPTIONS) -name layout -o $@ $<
qrc_languages.cpp: ../../image/languages/languages.qrc
$(AM_V_RCC)$(RCC) $(RCC_OPTIONS) --name languages -o $@ $<
$(AM_V_RCC)$(RCC) $(RCC_OPTIONS) -name languages -o $@ $<
qrc_i18n.cpp: i18n.qrc
$(AM_V_RCC)$(RCC) $(RCC_OPTIONS) --name i18n -o $@ $<
$(AM_V_RCC)$(RCC) $(RCC_OPTIONS) -name i18n -o $@ $<
qrc_toolbar.cpp: ../../image/toolbar.qrc
$(AM_V_RCC)$(RCC) $(RCC_OPTIONS) --name toolbar -o $@ $<
$(AM_V_RCC)$(RCC) $(RCC_OPTIONS) -name toolbar -o $@ $<
qrc_wsicon.cpp: ../../image/wsicon.qrc
$(AM_V_RCC)$(RCC) $(RCC_OPTIONS) --name wsicon -o $@ $<
$(AM_V_RCC)$(RCC) $(RCC_OPTIONS) -name wsicon -o $@ $<
ui_%.h: %.ui
$(AM_V_UIC)$(UIC) $< -o $@