redis: typo fix for glibc (use jemalloc).

This commit is contained in:
Juan RP 2016-04-30 12:30:52 +02:00
parent 16e778e05c
commit 762d1ab535
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Template file for 'redis'
pkgname=redis
version=3.0.7
revision=2
revision=3
makedepends="jemalloc-devel"
homepage="http://redis.io"
distfiles="http://download.redis.io/releases/${pkgname}-${version}.tar.gz"
@ -25,7 +25,7 @@ do_build() {
*-musl) _malloc="none";;
*) _malloc="jemalloc";;
esac
make CC=$CC CFLAGS="$CFLAGS" MALLOC=${_jemalloc} ${makejobs}
make CC=$CC CFLAGS="$CFLAGS" MALLOC=${_malloc} ${makejobs}
}
do_install() {
make INSTALL_BIN=${DESTDIR}/usr/bin PREFIX=/usr install