diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-09-30 23:53:00 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-09-30 23:55:58 +0200 |
commit | 891e6186bcb146f86db868ca943e6a517f9c746b (patch) | |
tree | dd329c0d7224db67bee4a7c8306f97cde96509dc /main | |
parent | a1ca1ee61270ca6ffcfb5d6fc8393b1dd39be259 (diff) | |
download | aports-891e6186bcb146f86db868ca943e6a517f9c746b.tar.bz2 aports-891e6186bcb146f86db868ca943e6a517f9c746b.tar.xz |
main/opus: build with -O2
It's a codec, so performance is more important than few bytes in
size, right?
Diffstat (limited to 'main')
-rw-r--r-- | main/opus/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/opus/APKBUILD b/main/opus/APKBUILD index 86ddd91daf..148614fb8c 100644 --- a/main/opus/APKBUILD +++ b/main/opus/APKBUILD @@ -14,7 +14,7 @@ builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" - ./configure \ + CFLAGS="${CFLAGS/-Os/-O2}" ./configure \ --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ |