diff options
author | Mitch Tishmack <mitch.tishmack@gmail.com> | 2017-05-27 08:16:34 -0500 |
---|---|---|
committer | Shiz <hi@shiz.me> | 2017-06-02 10:41:49 +0200 |
commit | ab4e693606e966b4481584f16b8e7764b52aa084 (patch) | |
tree | 5c2fee3dc515c1d3d20157a93d96d0b53a39d839 /testing/upx | |
parent | 8eca8396427d41e7c384c2efc7f500826ca9de02 (diff) | |
download | aports-ab4e693606e966b4481584f16b8e7764b52aa084.tar.bz2 aports-ab4e693606e966b4481584f16b8e7764b52aa084.tar.xz |
testing/upx: Remove explicit returns
Diffstat (limited to 'testing/upx')
-rw-r--r-- | testing/upx/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/upx/APKBUILD b/testing/upx/APKBUILD index cd6d64cee2..6226458a72 100644 --- a/testing/upx/APKBUILD +++ b/testing/upx/APKBUILD @@ -24,13 +24,13 @@ prepare() { build() { cd "$builddir" - make UPX_LZMADIR="$srcdir" all || return 1 + make UPX_LZMADIR="$srcdir" all } package() { cd "$builddir" - install -D -m 0755 src/upx.out "$pkgdir"/usr/bin/upx || return 1 + install -D -m 0755 src/upx.out "$pkgdir"/usr/bin/upx install -D -m 0644 doc/upx.1 "$pkgdir"/usr/share/man/man1/upx.1 } |