root wrote:
>
> linux/errno.h: no such file or directory.. could someone tell me the package that
>contains that.. and by the way what command are you doing to find it? -emmanuel
$ find / -path "*linux/errno.h"
/usr/src/linux/include/linux/errno.h
/usr/src/linux-2.2.15/include/linux/errno.h
$ rpm -qf /usr/src/linux/include/linux/errno.h
file /usr/src/linux/include/linux/errno.h is not owned by any package
/usr/src/linux is on my system a link to /usr/src/linux-2.2.15.
Links are not recognized by an 'rpm -qf'
$ rpm -qf /usr/src/linux-2.2.15/include/linux/errno.h
kernel-headers-2.2.15-0.25mdk
So your file is owned by kernel-headers-2.2.15-0.25mdk or whatever you
have
on your system.
Cheers,
A.