Skip to content

Commit 539e170

Browse files
committed
chore: Fix script/build-host w/ parens in PATH
`/bin/sh: 1: Syntax error: "(" unexpected`
1 parent 754aeae commit 539e170

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
@@ -86,7 +86,7 @@ $(SRCDIR)/libvpx:
8686

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

0 commit comments

Comments
 (0)