toolchain/nasm: fix missing AR/RANLIB variables

Fixes build on macOS

Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
Felix Fietkau 2018-07-07 14:50:51 +02:00
parent bf136c637c
commit d3a7587eb9
1 changed files with 5 additions and 4 deletions

View File

@ -24,6 +24,10 @@ HOST_CONFIGURE_ARGS+= \
--disable-gdb \
$(SOFT_FLOAT_CONFIG_OPTION) \
HOST_MAKE_FLAGS = \
AR=ar \
RANLIB=ranlib
define Host/Prepare
$(call Host/Prepare/Default)
ln -snf $(notdir $(HOST_BUILD_DIR)) $(BUILD_DIR_TOOLCHAIN)/$(PKG_NAME)
@ -37,12 +41,9 @@ define Host/Configure
$(call Host/Configure/Default)
endef
define Host/Compile
+$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR) all
endef
define Host/Install
$(MAKE) -C $(HOST_BUILD_DIR) \
$(HOST_MAKE_FLAGS) \
prefix=$(TOOLCHAIN_DIR) \
install
endef