summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilken Gottwalt2023-08-05 08:11:03 +0200
committerWilken Gottwalt2023-08-05 08:11:03 +0200
commitbfe59fb59afeb49923d3d3c6966bb6919998d6fb (patch)
tree0af6a3c25f2f66fbec65b61b9a14a3e081ddbcdf
parent1baae65b69d2092accb018a501142cb1f8d8339b (diff)
downloadaur-bfe59fb59afeb49923d3d3c6966bb6919998d6fb.tar.gz
fixed to much stripping the packaging section
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD3
2 files changed, 2 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 28606ff3fd8c..57fa40ab8fbf 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = arm-linux-gnueabihf-glibc
pkgdesc = GNU C Library
pkgver = 2.38
- pkgrel = 1
+ pkgrel = 2
url = https://www.gnu.org/software/libc/
arch = any
license = GPL
diff --git a/PKGBUILD b/PKGBUILD
index 7765b6b419fe..f292aba5dfdf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -10,7 +10,7 @@
_target=arm-linux-gnueabihf
pkgname=${_target}-glibc
pkgver=2.38
-pkgrel=1
+pkgrel=2
pkgdesc="GNU C Library"
arch=('any')
url="https://www.gnu.org/software/libc/"
@@ -99,6 +99,5 @@ package() {
install -Dm644 "${srcdir}"/sdt-config.h "${pkgdir}"/usr/"${_target}"/include/sys/sdt-config.h
# strip it manually to prevent makepkg complaining about srcdir references
- strip "${pkgdir}"/usr/"${_target}"/lib/* 2>/dev/null || true
find "${pkgdir}"/usr/"${_target}"/lib -type f -exec /usr/bin/"${_target}"-strip --strip-unneeded {} \; 2>/dev/null || true
}