unrar: dont use $TARGET_* variables

This commit is contained in:
Lukas Rusak 2016-09-24 11:45:11 -07:00
parent dee1900266
commit 39f38ab216
No known key found for this signature in database
GPG Key ID: 8C310C807E7393A3

View File

@ -32,11 +32,11 @@ PKG_LONGDESC="Unrar is a package to handle files compressed in the RAR format. D
PKG_AUTORECONF="no"
make_target() {
make CXX="$TARGET_CXX" \
make CXX="$CXX" \
CXXFLAGS="$TARGET_CXXFLAGS" \
RANLIB="$TARGET_RANLIB" \
AR="$TARGET_AR" \
STRIP="$TARGET_STRIP" \
RANLIB="$RANLIB" \
AR="$AR" \
STRIP="$STRIP" \
-f makefile
}