From b453751480d34e1d39587e170689f6b67088f994 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 29 Apr 2016 22:02:15 +0000 Subject: [PATCH] fix build on systems where native ar/ranlib don't work for target explicitly pass the pathnames to newly-installed binutils versions of these programs into musl's make. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3daa48c..d39f35d 100644 --- a/Makefile +++ b/Makefile @@ -146,7 +146,7 @@ musl/.mcm_configured: musl/.mcm_cloned gcc-$(GCC_VER)/build0/.mcm_built touch $@ musl/.mcm_built: musl/.mcm_configured - cd musl && $(MAKE) + cd musl && $(MAKE) AR=$(OUTPUT)/bin/$(TARGET)-ar RANLIB=$(OUTPUT)/bin/$(TARGET)-ranlib touch $@ musl/.mcm_installed: musl/.mcm_built