Skip to content

Commit a908d6e

Browse files
committed
chore: Fix build scripts breaking if parens exist in $PATH
`/bin/sh: 1: Syntax error: "(" unexpected`
1 parent 5c98bd6 commit a908d6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/dependencies.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ $(SRCDIR)/libvpx:
8787

8888
$(PREFIX)/libvpx.stamp: $(SRCDIR)/libvpx $(TOOLCHAIN_FILE)
8989
@$(PRE_RULE)
90-
echo $(PATH)
90+
echo "$(PATH)"
9191
mkdir -p $(BUILDDIR)/$(notdir $<)
9292
cd $(BUILDDIR)/$(notdir $<) && $(SRCDIR)/$(notdir $<)/configure $($(notdir $<)_CONFIGURE)
9393
$(MAKE) -C $(BUILDDIR)/$(notdir $<) install

0 commit comments

Comments
 (0)