Describe the bugconfigure --disable-static --disable-shared should result in neither the static nor the shared libraries to be installed. And since the libraries aren't being installed, the header files shouldn't be installed either.
Currently, it behaves as if --disable-static was never mentioned, i.e. installing both liblsof.a and the header files (lsof.h, lsof_fields.h)
Describe the bug
configure --disable-static --disable-shared
should result in neither the static nor the shared libraries to be installed. And since the libraries aren't being installed, the header files shouldn't be installed either.Currently, it behaves as if
--disable-static
was never mentioned, i.e. installing bothliblsof.a
and the header files (lsof.h
,lsof_fields.h
)To Reproduce Steps to reproduce the behavior:
configure --enable-security --disable-static --disable-shared
make
make install
Expected behavior Libraries and Header files not being installed
Actual behaviour Static library is installed. Header files are installed
Environment (please complete the following information):
Additional context Add any other context about the problem here.