diff options
author | Michal Marek <mmarek@suse.cz> | 2010-09-13 13:41:31 +0200 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2010-09-13 13:41:31 +0200 |
commit | 458452f4a9b61228cf48a4232a19c8d7d686c11b (patch) | |
tree | aa4042c2719e9295769d474ea9d5c711c331e38e /scripts | |
parent | 20f4ad8a19ad01405f9d6b3110d6eb93666ae21e (diff) | |
download | blackbird-op-linux-458452f4a9b61228cf48a4232a19c8d7d686c11b.tar.gz blackbird-op-linux-458452f4a9b61228cf48a4232a19c8d7d686c11b.zip |
kconfig: Simplify Makefile for xconfig
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 996059ef1c4d..3fbfe98be2b5 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -273,8 +273,8 @@ $(obj)/.tmp_qtcheck: moc="/usr/bin/moc"; \ fi; \ else \ - cflags="\$$(shell pkg-config QtCore --cflags) \$$(shell pkg-config QtGui --cflags) \$$(shell pkg-config Qt3Support --cflags)"; \ - libs="\$$(shell pkg-config QtCore --libs) \$$(shell pkg-config QtGui --libs) \$$(shell pkg-config Qt3Support --libs)"; \ + cflags="\$$(shell pkg-config QtCore QtGui Qt3Support --cflags)"; \ + libs="\$$(shell pkg-config QtCore QtGui Qt3Support --libs)"; \ binpath="\$$(shell pkg-config QtCore --variable=prefix)"; \ moc="$$binpath/bin/moc"; \ fi; \ |