diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2013-01-07 12:17:47 +0100 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2013-01-07 12:17:47 +0100 |
commit | fafc80c9840e88b4325b79841ed8e2784f0cba28 (patch) | |
tree | b9234295e8ffe5e6805c92c9f790e38095831961 /main/gettext | |
parent | 7067cc697eda827271e8c8486fd04a6af82aef5c (diff) | |
download | aports-fafc80c9840e88b4325b79841ed8e2784f0cba28.tar.bz2 aports-fafc80c9840e88b4325b79841ed8e2784f0cba28.tar.xz |
main/gettext: fix build on eglibc
Diffstat (limited to 'main/gettext')
-rw-r--r-- | main/gettext/APKBUILD | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/main/gettext/APKBUILD b/main/gettext/APKBUILD index 2b9d59fce..266bd9571 100644 --- a/main/gettext/APKBUILD +++ b/main/gettext/APKBUILD @@ -52,8 +52,10 @@ package() { libintl() { replaces="gettext" mkdir -p "$subpkgdir"/usr/lib - [ "$ALPINE_LIBC" != "eglibc" ] && mv "$pkgdir"/usr/lib/libintl.so.* \ - "$subpkgdir"/usr/lib || return 1 + if [ "$ALPINE_LIBC" != "eglibc" ]; then + mv "$pkgdir"/usr/lib/libintl.so.* \ + "$subpkgdir"/usr/lib || return 1 + fi } md5sums="0c86e5af70c195ab8bd651d17d783928 gettext-0.18.2.tar.gz" |