2010-11-17 12:23:58

by Ameya Palande

[permalink] [raw]
Subject: make xconfig broken on 2.6.37-rc2

Hi,

When I try to do "make xconfig" on 2.6.37-rc2 it gives me following error:

HOSTCXX scripts/kconfig/qconf.o
In file included from scripts/kconfig/qconf.cc:48:
scripts/kconfig/qconf.moc:13: fatal error: private/qucomextra_p.h: No
such file or directory
compilation terminated.
make[1]: *** [scripts/kconfig/qconf.o] Error 1
make: *** [xconfig] Error 2

My host is ubuntu 10.10 x86-32 with libqt3 and libqt4 both installed.

Cheers,
Ameya.


2010-12-17 13:33:30

by Richard Genoud

[permalink] [raw]
Subject: Re: make xconfig broken on 2.6.37-rc2

2010/11/17 Ameya Palande <[email protected]>:
> Hi,
>
> When I try to do "make xconfig" on 2.6.37-rc2 it gives me following error:
>
>  HOSTCXX scripts/kconfig/qconf.o
> In file included from scripts/kconfig/qconf.cc:48:
> scripts/kconfig/qconf.moc:13: fatal error: private/qucomextra_p.h: No
> such file or directory
> compilation terminated.
> make[1]: *** [scripts/kconfig/qconf.o] Error 1
> make: *** [xconfig] Error 2
>
> My host is ubuntu 10.10 x86-32 with libqt3 and libqt4 both installed.

hi !
this is due to moc which points by default to /usr/bin/moc-qt3
just make it point to moc-qt4 :
sudo update-alternatives --config moc

then make distclean, make xconfig.

richard