From a908d6eadd25bdc34b1ffd02d43009ddb3770eeb Mon Sep 17 00:00:00 2001 From: Robin Linden Date: Sat, 4 Nov 2023 00:19:56 +0100 Subject: [PATCH] chore: Fix build scripts breaking if parens exist in $PATH `/bin/sh: 1: Syntax error: "(" unexpected` --- scripts/dependencies.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dependencies.mk b/scripts/dependencies.mk index a85795df9..bc2de0014 100644 --- a/scripts/dependencies.mk +++ b/scripts/dependencies.mk @@ -87,7 +87,7 @@ $(SRCDIR)/libvpx: $(PREFIX)/libvpx.stamp: $(SRCDIR)/libvpx $(TOOLCHAIN_FILE) @$(PRE_RULE) - echo $(PATH) + echo "$(PATH)" mkdir -p $(BUILDDIR)/$(notdir $<) cd $(BUILDDIR)/$(notdir $<) && $(SRCDIR)/$(notdir $<)/configure $($(notdir $<)_CONFIGURE) $(MAKE) -C $(BUILDDIR)/$(notdir $<) install