[vlc-commits] extras: tools: Remove broken makefile quoting of PATH
Martin Storsjö
git at videolan.org
Tue Jun 4 08:47:24 CEST 2019
vlc | branch: master | Martin Storsjö <martin at martin.st> | Tue Jun 4 09:44:55 2019 +0300| [87824da9229322f747c1bdedf84255b96e5a9d77] | committer: Martin Storsjö
extras: tools: Remove broken makefile quoting of PATH
In makefiles, the quotes end up as part of the variable value.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=87824da9229322f747c1bdedf84255b96e5a9d77
---
extras/tools/bootstrap | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/extras/tools/bootstrap b/extras/tools/bootstrap
index 6ce7bce345..1c837a8910 100755
--- a/extras/tools/bootstrap
+++ b/extras/tools/bootstrap
@@ -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
More information about the vlc-commits
mailing list