extras: tools: Remove broken makefile quoting of PATH

In makefiles, the quotes end up as part of the variable value.
This commit is contained in:
Martin Storsjö 2019-06-04 09:44:55 +03:00
parent ecdfc29c23
commit 87824da922
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ TOOLS = $BOOTSTRAP_PATH
MAKEFLAGS += -j$CPUS
CMAKEFLAGS += --parallel=$CPUS
PREFIX=\$(abspath ./build)
PATH="\${PREFIX}/bin:$PATH"
PATH=\${PREFIX}/bin:$PATH
EOF
for t in $FOUND; do