dslm4515 / CMLFS

Clang-Built Musl Linux From Scratch

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

utmps utmpx.h already includes utmps/utmpx.h

firasuke opened this issue · comments

This symlink is not needed as utmps's utmpx.h already includes utmps/utmpx.h.

ln -sv utmps/utmpx.h /usr/include/utmpx.h

I can't remember what package it was, but it was looking for /usr/include/utmpx.h.

When I install utmps, this is what is installed:

└── usr
    ├── bin
    │   ├── utmps-utmpd
    │   ├── utmps-write
    │   └── utmps-wtmpd
    ├── include
    │   └── utmps
    │       ├── config.h
    │       ├── utmps.h
    │       └── utmpx.h
    └── lib
        ├── libutmps.a
        ├── libutmps.so -> libutmps.so.0.1
        ├── libutmps.so.0.1 -> libutmps.so.0.1.2.2
        └── libutmps.so.0.1.2.2

For now, I'll omit the link and see what package requires it

When I install utmps, this is what is installed:

I think you need to pass --enable-libc-includes to utmps configure in order to get usr/include/utmpx.h.

Thanks!

utmps build updated with commit fd8dffc

You are welcome!