community/libtorrent: beautification

This commit is contained in:
Kevin Mihelich 2013-10-23 00:01:20 +00:00
parent c728df1bf4
commit 8f160f953a

View file

@ -25,16 +25,11 @@ build() {
export CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
if [[ $CARCH == 'arm' ]]; then
./configure \
--prefix=/usr \
--enable-aligned \
--disable-debug
else
./configure \
--prefix=/usr \
--disable-debug
fi
[[ $CARCH == 'arm' ]] && CONFIG='--enable-aligned'
./configure \
--prefix=/usr \
--disable-debug $CONFIG
make
}