diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-03-31 19:51:59 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-04-04 10:05:41 +0000 |
commit | ad60538f47ef15b66083761968e328467ff5f2da (patch) | |
tree | 2ba156da5d0dc98ba2532456dda4e6fd7a9f0ec9 /main | |
parent | bbdb673bf69e73c3e536a10be78d35fdc92e1913 (diff) | |
download | aports-ad60538f47ef15b66083761968e328467ff5f2da.tar.bz2 aports-ad60538f47ef15b66083761968e328467ff5f2da.tar.xz |
main/valgrind: fix when stripping binaries
APKBUILD was trying to strip a binary (no_op_client_for_valgrind)
that was deprecated and no longer exists. This patch remove this binary
from strip list and add two valgrind binaries (valgrind-di-server and
vgdb) that were not being stripped.
Diffstat (limited to 'main')
-rw-r--r-- | main/valgrind/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/valgrind/APKBUILD b/main/valgrind/APKBUILD index f21a3f7eae..8728790bdd 100644 --- a/main/valgrind/APKBUILD +++ b/main/valgrind/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=valgrind pkgver=3.12.0 -pkgrel=0 +pkgrel=1 pkgdesc="A tool to help find memory-management problems in programs" url="http://valgrind.org/" arch="x86 x86_64 armhf ppc64le s390x" @@ -58,7 +58,8 @@ package() { # we have options=!strip above so we strip the /usr/bin/* manually if [ -z "$DEBUG" ]; then strip "$pkgdir"/usr/bin/valgrind \ - "$pkgdir"/usr/bin/no_op_client_for_valgrind \ + "$pkgdir"/usr/bin/valgrind-di-server \ + "$pkgdir"/usr/bin/vgdb \ "$pkgdir"/usr/bin/valgrind-listener \ "$pkgdir"/usr/bin/cg_merge fi |