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" PKG_AUTORECONF="no"
make_target() { make_target() {
make CXX="$TARGET_CXX" \ make CXX="$CXX" \
CXXFLAGS="$TARGET_CXXFLAGS" \ CXXFLAGS="$TARGET_CXXFLAGS" \
RANLIB="$TARGET_RANLIB" \ RANLIB="$RANLIB" \
AR="$TARGET_AR" \ AR="$AR" \
STRIP="$TARGET_STRIP" \ STRIP="$STRIP" \
-f makefile -f makefile
} }