aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2016-03-18 03:42:29 +0000
committerJoão Valverde <j@v6e.pt>2016-03-18 03:45:58 +0000
commiteb6abe3a75f80776865332d4c28977a348b09a52 (patch)
treeb105c8c1297495137a42c95ed0b33533d9cb5e6d /ui
parent56c40dbf68b01e2ab89cac8d558f17d0c4a8587b (diff)
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>
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/Makefile.am12
1 files changed, 6 insertions, 6 deletions
diff --git a/ui/qt/Makefile.am b/ui/qt/Makefile.am
index 8c0c6b47e6..33c0231ef4 100644
--- a/ui/qt/Makefile.am
+++ b/ui/qt/Makefile.am
@@ -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 $@