The makefile package is a simple, powerful and extensible way to write makefiles for a GNUstep-based project.
GNU General Public License v3.0
29
stars
43
forks
source link
Allow users to override the /lib dir #45
Closed
qmfrederik closed 7 months ago
The File Hierarchy Standard allows for an alternative format for essential shared libraries, using
lib<qual>
instead oflib
.Some Linux distributions, like Enterprise Linux, adopt this, and on 64-bit systems the shared libraries would go into
lib64
instead oflib
.Currently the Fedora/EPEL packages manually patch the fhs and fhs-system files.
This commit updates the
./configure
script so that the user can manually specify alib
folder, e.g.--with-libdir=lib64
.