mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* lkc 1.2: make xmenu error
@ 2002-10-30 22:38 Bob Billson
  2002-10-30 22:58 ` Roman Zippel
  0 siblings, 1 reply; 3+ messages in thread
From: Bob Billson @ 2002-10-30 22:38 UTC (permalink / raw)
  To: Roman Zippel; +Cc: linux-kernel

Hi Roman ...

I was trying out lkc v1.2 on 2.5.44.  make xconfig coughs up the following
error:

[reb@etain]:~/kernel/linux-2.5.44$ make xconfig
make -f scripts/Makefile 
make -f scripts/kconfig/Makefile scripts/kconfig/qconf
  gcc -Wp,-MD,scripts/kconfig/.conf.o.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer   -c -o scripts/kconfig/conf.o scripts/kconfig/conf.c
  gcc -Wp,-MD,scripts/kconfig/.kconfig_load.o.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer   -c -o scripts/kconfig/kconfig_load.o scripts/kconfig/kconfig_load.c
  gcc -Wp,-MD,scripts/kconfig/.mconf.o.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer   -c -o scripts/kconfig/mconf.o scripts/kconfig/mconf.c
/usr/share/qt/bin/moc -i scripts/kconfig/qconf.h -o scripts/kconfig/qconf.moc
make[1]: /usr/share/qt/bin/moc: Command not found
make[1]: *** [scripts/kconfig/qconf.moc] Error 127
make: *** [scripts/kconfig/qconf] Error 2

This is on a Debian (testing tree) box with the libqt3-dev package
installed.  moc is there, just not in /usr/share/qt/bin:

[reb@etain]:~/kernel/linux-2.5.44$ whereis moc
moc: /usr/bin/moc /usr/share/man/man1/moc.1.gz
      
I didn't see this mentioned on lkml yet.  Apologies if it was and I missed
it.
          bob
-- 
 bob billson        email: reb@bhive.dhs.org          ham: kc2wz    /)
                           reb@elbnet.com             beekeeper  -8|||}
 "Níl aon tinteán mar do thinteán féin." --Dorothy    Linux geek    \)
 [ GPG key: http://bhive.dhs.org/gpgkey.html ]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: lkc 1.2: make xmenu error
  2002-10-30 22:38 lkc 1.2: make xmenu error Bob Billson
@ 2002-10-30 22:58 ` Roman Zippel
  2002-10-31  3:36   ` Bob Billson
  0 siblings, 1 reply; 3+ messages in thread
From: Roman Zippel @ 2002-10-30 22:58 UTC (permalink / raw)
  To: Bob Billson; +Cc: linux-kernel

Hi,

On Wed, 30 Oct 2002, Bob Billson wrote:

> [reb@etain]:~/kernel/linux-2.5.44$ make xconfig
> make -f scripts/Makefile 
> make -f scripts/kconfig/Makefile scripts/kconfig/qconf
>   gcc -Wp,-MD,scripts/kconfig/.conf.o.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer   -c -o scripts/kconfig/conf.o scripts/kconfig/conf.c
>   gcc -Wp,-MD,scripts/kconfig/.kconfig_load.o.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer   -c -o scripts/kconfig/kconfig_load.o scripts/kconfig/kconfig_load.c
>   gcc -Wp,-MD,scripts/kconfig/.mconf.o.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer   -c -o scripts/kconfig/mconf.o scripts/kconfig/mconf.c
> /usr/share/qt/bin/moc -i scripts/kconfig/qconf.h -o scripts/kconfig/qconf.moc
> make[1]: /usr/share/qt/bin/moc: Command not found
> make[1]: *** [scripts/kconfig/qconf.moc] Error 127
> make: *** [scripts/kconfig/qconf] Error 2
> 
> This is on a Debian (testing tree) box with the libqt3-dev package
> installed.  moc is there, just not in /usr/share/qt/bin:
> 
> [reb@etain]:~/kernel/linux-2.5.44$ whereis moc
> moc: /usr/bin/moc /usr/share/man/man1/moc.1.gz

Debian creates symlinks in /usr/share/qt/bin, which point to /usr/bin, so 
this should work (at least it does here :) ). How does your 
/usr/share/qt/bin look like?

bye, Roman


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: lkc 1.2: make xmenu error
  2002-10-30 22:58 ` Roman Zippel
@ 2002-10-31  3:36   ` Bob Billson
  0 siblings, 0 replies; 3+ messages in thread
From: Bob Billson @ 2002-10-31  3:36 UTC (permalink / raw)
  To: Roman Zippel; +Cc: linux-kernel

On Wed, Oct 30, 2002 at 11:58:46PM +0100, Roman Zippel penned:
> > This is on a Debian (testing tree) box with the libqt3-dev package
> > installed.  moc is there, just not in /usr/share/qt/bin:
> > 
> > [reb@etain]:~/kernel/linux-2.5.44$ whereis moc
> > moc: /usr/bin/moc /usr/share/man/man1/moc.1.gz
> 
> Debian creates symlinks in /usr/share/qt/bin, which point to /usr/bin, so 
> this should work (at least it does here :) ). How does your 
> /usr/share/qt/bin look like?

Doh!  There were no symlinks.  I reinstalled the package and magically
they appeared.   So ...umm... never mind that bug report. :)

     thanks... bob
-- 
 bob billson        email: reb@bhive.dhs.org          ham: kc2wz    /)
                           reb@elbnet.com             beekeeper  -8|||}
 "Níl aon tinteán mar do thinteán féin." --Dorothy    Linux geek    \)
 [ GPG key: http://bhive.dhs.org/gpgkey.html ]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2002-10-31  3:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-30 22:38 lkc 1.2: make xmenu error Bob Billson
2002-10-30 22:58 ` Roman Zippel
2002-10-31  3:36   ` Bob Billson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®