xconfig: use pkgconfig to find moc
Various schemes exist to allow parallel installations of multiple major versions of Qt (4.x with the previous 3.x and/or the upcoming 5.x). QtCore.pc includes a moc_location variable which should be a more reliable way to find moc. Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> Signed-off-by: Michal Marek <mmarek@suse.cz>
This commit is contained in:
parent
3725f3ed12
commit
48485949b4
1 changed files with 2 additions and 2 deletions
|
@ -260,8 +260,8 @@ $(obj)/.tmp_qtcheck:
|
||||||
else \
|
else \
|
||||||
cflags="\$$(shell pkg-config QtCore QtGui Qt3Support --cflags)"; \
|
cflags="\$$(shell pkg-config QtCore QtGui Qt3Support --cflags)"; \
|
||||||
libs="\$$(shell pkg-config QtCore QtGui Qt3Support --libs)"; \
|
libs="\$$(shell pkg-config QtCore QtGui Qt3Support --libs)"; \
|
||||||
binpath="\$$(shell pkg-config QtCore --variable=prefix)"; \
|
moc="\$$(shell pkg-config QtCore --variable=moc_location)"; \
|
||||||
moc="$$binpath/bin/moc"; \
|
[ -n "$$moc" ] || moc="\$$(shell pkg-config QtCore --variable=prefix)/bin/moc"; \
|
||||||
fi; \
|
fi; \
|
||||||
echo "KC_QT_CFLAGS=$$cflags" > $@; \
|
echo "KC_QT_CFLAGS=$$cflags" > $@; \
|
||||||
echo "KC_QT_LIBS=$$libs" >> $@; \
|
echo "KC_QT_LIBS=$$libs" >> $@; \
|
||||||
|
|
Loading…
Reference in a new issue