diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2024-09-23 18:37:31 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2024-09-23 18:37:31 +0000 |
commit | 546b31b5572decf578beecff7829e78603d612d4 (patch) | |
tree | 9f7a839258eb21076313987a4a2243109af7cf9a | |
parent | b26b1affa176d27077f3c08cbdd7f3f8d001cc99 (diff) | |
download | s6-linux-init-546b31b5572decf578beecff7829e78603d612d4.tar.xz |
Align configure to /usr/lib default
Signed-off-by: Laurent Bercot <ska@appnovation.com>
-rw-r--r-- | COPYING | 2 | ||||
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | configure | 18 | ||||
-rw-r--r-- | doc/index.html | 2 | ||||
-rw-r--r-- | doc/upgrade.html | 4 |
6 files changed, 13 insertions, 16 deletions
@@ -1,4 +1,4 @@ -Copyright (c) 2015-2023 Laurent Bercot <ska-skaware@skarnet.org> +Copyright (c) 2015-2024 Laurent Bercot <ska-skaware@skarnet.org> Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -8,7 +8,7 @@ Build Instructions - GNU make version 3.81 or later - skalibs version 2.14.3.0 or later: https://skarnet.org/software/skalibs/ - Optional: nsss version 0.2.0.5 or later: https://skarnet.org/software/nsss/ - - Optional: utmps version 0.1.2.2 or later: https://skarnet.org/software/utmps/ + - Optional: utmps version 0.1.2.3 or later: https://skarnet.org/software/utmps/ - execline version 2.9.6.1 or later: https://skarnet.org/software/execline/ - s6 version 2.13.0.1 or later: https://skarnet.org/software/s6/ @@ -4,6 +4,7 @@ In 1.1.2.1 ---------- - Bugfixes. + - Install static libraries in /usr/lib. In 1.1.2.0 @@ -21,14 +21,14 @@ Fine tuning of the installation directories: --dynlibdir=DIR shared library files [PREFIX/lib] --bindir=BINDIR user executables [EPREFIX/bin] --libexecdir=DIR package-scoped executables [EPREFIX/libexec] - --libdir=DIR static library files [PREFIX/lib/$package] + --libdir=DIR static library files [PREFIX/lib] --includedir=DIR C header files [PREFIX/include] --skeldir=DIR script skeleton files [PREFIX/etc/s6-linux-init/skel] --tmpfsdir=DIR assume the initial tmpfs will be mounted on DIR [/run] --scandir=DIR use tmpfsdir/DIR as the s6-svscan directory [service] If no --prefix option is given, by default libdir (but not dynlibdir) will be - /usr/lib/$package, and includedir will be /usr/include. + /usr/lib, and includedir will be /usr/include. Dependencies: --with-sysdeps=DIR use sysdeps in DIR [PREFIX/lib/skalibs/sysdeps] @@ -155,7 +155,7 @@ exec_prefix='$prefix' dynlibdir='$prefix/lib' libexecdir='$exec_prefix/libexec' bindir='$exec_prefix/bin' -libdir='$prefix/lib/$package' +libdir='$prefix/lib' includedir='$prefix/include' sysdeps='$prefix/lib/skalibs/sysdeps' manualsysdeps=false @@ -228,8 +228,8 @@ done # Add /usr in the default default case if test -z "$prefix" ; then - if test "$libdir" = '$prefix/lib/$package' ; then - libdir=/usr/lib/$package + if test "$libdir" = '$prefix/lib' ; then + libdir=/usr/lib fi if test "$includedir" = '$prefix/include' ; then includedir=/usr/include @@ -388,14 +388,6 @@ fi LDFLAGS_SHARED="${LDFLAGS_SHARED}${addlibdpath}" -if test -z "$vpaths" ; then - while read dep ; do - base=$(basename $dep) ; - vpaths="$vpaths /usr/lib/$base" - addlibspath="$addlibspath -L/usr/lib/$base" - done < package/deps-build -fi - if $allstatic ; then LDFLAGS_NOSHARED="${LDFLAGS_NOSHARED}${addlibspath}" tryldflag LDFLAGS_NOSHARED -Wl,--gc-sections diff --git a/doc/index.html b/doc/index.html index 5723431..d761874 100644 --- a/doc/index.html +++ b/doc/index.html @@ -96,7 +96,7 @@ want nsswitch-like functionality: 0.2.0.5 or later (build-time and boot-time) </li> <li> If you want secure utmp functionality: <a href="//skarnet.org/software/utmps/">utmps</a> version -0.1.2.2 or later (build-time and boot-time) </li> +0.1.2.3 or later (build-time and boot-time) </li> </ul> <h3> Licensing </h3> diff --git a/doc/upgrade.html b/doc/upgrade.html index b997984..632daed 100644 --- a/doc/upgrade.html +++ b/doc/upgrade.html @@ -25,10 +25,14 @@ dependency bumped to 2.14.3.0. </li> <li> <a href="//skarnet.org/software/nsss/">nsss</a> optional dependency bumped to 0.2.0.5. </li> + <li> <a href="//skarnet.org/software/utmps/">utmps</a> +optional dependency bumped to 0.1.2.3. </li> <li> <a href="//skarnet.org/software/execline/">execline</a> dependency bumped to 2.9.6.1. </li> <li> <a href="//skarnet.org/software/s6/">s6</a> dependency bumped to 2.13.0.1. </li> + <li> Static libraries (if any) are installed in <tt>/usr/lib</tt> +by default. </li> </ul> <h2> in 1.1.2.0 </h2> |