On Tue, Dec 18, 2001 at 07:16:58PM +1100, Grant Parnell wrote: > > fred:/usr/src/linux/scripts/lxdialog # make clean all > > rm -f core *.o *~ lxdialog > > /bin/sh: -lncurses: command not found > > GRiPZ> Right from your first message the "command not found" bit bothered > me. compilier/linker/library utilities may have gone awol.
I'd say the line thats causing this error is in /usr/src/linux/scripts/lxdialog/Makefile @if $(HOSTCC) -lncurses lxtemp.c ; then \ HOSTCC gets set in /usr/src/linux/Makefile, in mine it says HOSTCC = gcc So you probably have to do "HOSTCC=gcc make clean all" (change HOSTCC=gcc to what ever yours is set to in /usr/src/linux/Makefile) -- SLUG - Sydney Linux User Group Mailing List - http://slug.org.au/ More Info: http://lists.slug.org.au/listinfo/slug
