diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-10-31 10:32:05 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-10-31 10:32:05 +0000 |
commit | 366f85bcf4ee29b1e410ef3c53fbe140c71f1293 (patch) | |
tree | 91514e3cdf420f65d367f0051094d3e1da7f5534 /sub/musl | |
parent | 5bf91cefdfe42523a48379173299671084db1905 (diff) | |
download | lh-bootstrap-366f85bcf4ee29b1e410ef3c53fbe140c71f1293.tar.xz |
Properly quote BUILD_BUILD_CC
Diffstat (limited to 'sub/musl')
-rw-r--r-- | sub/musl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sub/musl/Makefile b/sub/musl/Makefile index 33d8875..0d23c83 100644 --- a/sub/musl/Makefile +++ b/sub/musl/Makefile @@ -20,7 +20,7 @@ $(OUTPUT)/build-build$(MUSL_BASE)/.lh_copied: $(OUTPUT)/sources/.lh_musl_cloned exec setuidgid $(NORMALUSER) touch $@ $(OUTPUT)/build-build$(MUSL_BASE)/.lh_configured: $(OUTPUT)/build-build$(MUSL_BASE)/.lh_copied - cd $(OUTPUT)/build-build$(MUSL_BASE)/src && setuidgid $(NORMALUSER) ./configure --prefix=$(OUTPUT)/build-build$(MUSL_BASE) --enable-warnings --enable-gcc-wrapper CC=$(BUILD_BUILD_CC) + cd $(OUTPUT)/build-build$(MUSL_BASE)/src && setuidgid $(NORMALUSER) ./configure --prefix=$(OUTPUT)/build-build$(MUSL_BASE) --enable-warnings --enable-gcc-wrapper "CC=$(BUILD_BUILD_CC)" exec setuidgid $(NORMALUSER) touch $@ $(OUTPUT)/build-build$(MUSL_BASE)/.lh_built: $(OUTPUT)/build-build$(MUSL_BASE)/.lh_configured |