Skip to content
Snippets Groups Projects
Commit 36075954 authored by John Hodge's avatar John Hodge
Browse files

Externals - Fix non-quoted $PATH value

parent 5b5a9511
Branches
No related merge requests found
......@@ -24,9 +24,9 @@ endif
$(BDIR)/Makefile: _patch $(CONFIGSCRIPT) ../common_automake.mk Makefile
mkdir -p $(BDIR)
cd $(BDIR) && $(CONFIGURE_ENV) PATH=$(PATH) $(CONFIGURE_LINE)
cd $(BDIR) && $(CONFIGURE_ENV) PATH="$(PATH)" $(CONFIGURE_LINE)
_build: $(BDIR)/Makefile
PATH=$(PATH) make $(BTARGETS) -C $(BDIR)
PATH=$(PATH) make DESTDIR=$(OUTDIR) $(ITARGETS) -C $(BDIR)
PATH="$(PATH)" make $(BTARGETS) -C $(BDIR)
PATH="$(PATH)" make DESTDIR=$(OUTDIR) $(ITARGETS) -C $(BDIR)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment