aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Knall <roland.knall@br-automation.com>2018-01-02 11:19:55 +0100
committerRoland Knall <rknall@gmail.com>2018-01-02 10:59:26 +0000
commitd20629e0f087c8e1aff261a7a15d0a8aac83e54b (patch)
tree90d8ba95fe1784d31c3dd00b4bfd58603d1df0d8
parent5bb763a9187397d3a6dd81c50cfc5f1a9db7eff5 (diff)
Build: Fix Ubuntu moc build
Includepaths for moc where not correctly applied Change-Id: I1e3df133736372f3e4139957dc2e426f51764c86 Reviewed-on: https://code.wireshark.org/review/25108 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
-rw-r--r--ui/qt/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/Makefile.am b/ui/qt/Makefile.am
index 0ea1cec1d5..6c467895c4 100644
--- a/ui/qt/Makefile.am
+++ b/ui/qt/Makefile.am
@@ -775,7 +775,7 @@ SUFFIXES = .moc.cpp
# $(MOC) $< -o $@
#
.h.moc.cpp:
- $(AM_V_MOC)$(MOC) $(MOC_OPTIONS) -I.. -I../.. -o $@ $<
+ $(AM_V_MOC)$(MOC) $(MOC_OPTIONS) -I.. -I../.. $(INCLUDEDIRS) -o $@ $<
qrc_about.cpp: ../../image/about.qrc
$(AM_V_RCC)$(RCC) $(RCC_OPTIONS) -name about -o $@ $<