diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2021-03-13 16:40:49 +0100 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2021-03-13 16:41:34 +0100 |
commit | 0b9f8e012a51eecd3df1a86b4ca639de85537e33 (patch) | |
tree | b34341ada140e1a78cb1bb6fad1ff2d9b0a9fb97 /gkbuilds | |
parent | Bump xfsprogs to v5.11.0 (diff) | |
download | genkernel-0b9f8e012a51eecd3df1a86b4ca639de85537e33.tar.gz genkernel-0b9f8e012a51eecd3df1a86b4ca639de85537e33.tar.bz2 genkernel-0b9f8e012a51eecd3df1a86b4ca639de85537e33.zip |
Bump strace to v5.11
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'gkbuilds')
-rw-r--r-- | gkbuilds/strace.gkbuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gkbuilds/strace.gkbuild b/gkbuilds/strace.gkbuild index 62399ce5..d32a4b7e 100644 --- a/gkbuilds/strace.gkbuild +++ b/gkbuilds/strace.gkbuild @@ -1,12 +1,13 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 src_configure() { append-ldflags -static -pthread - export ac_cv_header_libaio_h=yes local myconf=( + --disable-gcc-Werror --enable-mpers=check + --enable-static --without-libunwind --without-libdw ) @@ -19,8 +20,8 @@ src_configure() { src_install() { mkdir -p "${D}"/usr/bin || die "Failed to create '${D}/usr/bin'!" - cp -a strace "${D}"/usr/bin/ \ - || die "Failed to copy '${S}/strace' to '${D}/usr/bin/'!" + cp -a src/strace "${D}"/usr/bin/ \ + || die "Failed to copy '${S}/src/strace' to '${D}/usr/bin/'!" "${STRIP}" --strip-all "${D}"/usr/bin/strace \ || die "Failed to strip '${D}/usr/bin/strace'!" |