diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2023-10-13 20:51:23 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2023-10-13 23:29:33 +0200 |
commit | 11a869c5a53741dfa89121ba6e03e97bd06c1180 (patch) | |
tree | 1e60e28e67b86bbdd04c3e72be9971b5a4910217 /source | |
parent | b858859f0e09ca0e9cc65e2f393596c86f96a148 (diff) | |
download | current-11a869c5a53741dfa89121ba6e03e97bd06c1180.tar.gz current-11a869c5a53741dfa89121ba6e03e97bd06c1180.tar.xz |
Fri Oct 13 20:51:23 UTC 202320231013205123
a/aaa_glibc-solibs-2.38-x86_64-3.txz: Rebuilt.
a/xfsprogs-6.5.0-x86_64-1.txz: Upgraded.
l/glibc-2.38-x86_64-3.txz: Rebuilt.
Don't strip ld-2.38.so as this breaks valgrind.
Thanks to rastos and alienBOB.
Fixed unreplaced @@VERSION@@ in the doinst.sh "dead code."
Thanks to pee_bee.
l/glibc-i18n-2.38-x86_64-3.txz: Rebuilt.
l/glibc-profile-2.38-x86_64-3.txz: Rebuilt.
l/pipewire-0.3.82-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source')
-rwxr-xr-x | source/l/glibc/glibc.SlackBuild | 2 | ||||
-rwxr-xr-x | source/l/glibc/libxcrypt.build | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source/l/glibc/glibc.SlackBuild b/source/l/glibc/glibc.SlackBuild index d35c72580..ebc6de463 100755 --- a/source/l/glibc/glibc.SlackBuild +++ b/source/l/glibc/glibc.SlackBuild @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=glibc VERSION=${VERSION:-$(echo glibc-*.tar.xz | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} CHECKOUT=${CHECKOUT:-""} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} # I was considering disabling NSCD, but MoZes talked me out of it. :) #DISABLE_NSCD=" --disable-nscd " diff --git a/source/l/glibc/libxcrypt.build b/source/l/glibc/libxcrypt.build index 17bc62ec5..f4b7cc927 100755 --- a/source/l/glibc/libxcrypt.build +++ b/source/l/glibc/libxcrypt.build @@ -87,7 +87,7 @@ cd .. rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/libcrypt*.la # Strip binaries: -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +find $PKG -name "libcrypt*" | xargs file | grep -e "executable" -e "shared object" | grep ELF | cut -f 1 -d : | xargs strip -g 2> /dev/null # Move libraries out of /usr: mkdir -p $PKG/lib${LIBDIRSUFFIX} |