summaryrefslogtreecommitdiffstats
path: root/testing/lrzsz
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-10-08 09:05:50 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2012-10-08 09:06:38 +0000
commit5a5e5e5f75cc65596c015f6a8c4e2e3846d514e7 (patch)
tree536ed0613dcbb859f73200912a9d4182418ef9c4 /testing/lrzsz
parent9a3319f55e1bfb963cc0fa7a31f1eb42b185fa25 (diff)
downloadaports-5a5e5e5f75cc65596c015f6a8c4e2e3846d514e7.tar.bz2
aports-5a5e5e5f75cc65596c015f6a8c4e2e3846d514e7.tar.xz
testing/lrzsz: buid fix. dont remove anything in /usr/bin
Diffstat (limited to 'testing/lrzsz')
-rw-r--r--testing/lrzsz/APKBUILD5
1 files changed, 4 insertions, 1 deletions
diff --git a/testing/lrzsz/APKBUILD b/testing/lrzsz/APKBUILD
index 41585a631..782c7a2f9 100644
--- a/testing/lrzsz/APKBUILD
+++ b/testing/lrzsz/APKBUILD
@@ -23,6 +23,9 @@ prepare() {
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
+
+ # make install tries to remove stuff from /usr/bin
+ sed -i -e '/rm -f $(bindir)/d' src/Makefile.in
}
build() {
@@ -35,7 +38,7 @@ build() {
package() {
cd "$_builddir"
- make -j1 DESTDIR=$pkgdir install
+ make -j1 DESTDIR="$pkgdir" install
}
md5sums="b5ce6a74abc9b9eb2af94dffdfd372a4 lrzsz-0.12.20.tar.gz"