diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2010-09-26 19:27:33 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2010-09-26 19:27:33 +0000 |
commit | 30e8feac61c3c7cc7e84159c29b00f5e49dbedef (patch) | |
tree | 26de2e814714096f0ae86a7846ec8e5b82be5db7 /main/faac | |
parent | 6267ff5c95ad547b5698bb2fe38a51475ad61da8 (diff) | |
parent | e59f25e6a0d9d18f07ee5b249c535edfbfdb832e (diff) | |
download | aports-eglibc.tar.bz2 aports-eglibc.tar.xz |
Merge branch 'master' into eglibceglibc
Diffstat (limited to 'main/faac')
-rw-r--r-- | main/faac/APKBUILD | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/main/faac/APKBUILD b/main/faac/APKBUILD index 1e196aac4..876ec52a6 100644 --- a/main/faac/APKBUILD +++ b/main/faac/APKBUILD @@ -14,9 +14,11 @@ source="http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.t prepare() { cd "$srcdir/$pkgname-$pkgver" #taken from http://bugs.sourcemage.org/show_bug.cgi?id=15263 - [ "$ALPINE_LIBC" = "eglibc" ] && sed -i \ - "s/^\(.*strcasestr\)/\/\/ This is in libc and conflicts: \1 /" \ - common/mp4v2/mpeg4ip.h + if [ "$ALPINE_LIBC" = "eglibc" ]; then + sed -i \ + "s/^\(.*strcasestr\)/\/\/ This is in libc and conflicts: \1 /" \ + common/mp4v2/mpeg4ip.h + fi } build() { |