[vlc-commits] extras: tools: Remove broken makefile quoting of PATH
Martin Storsjö
git at videolan.org
Thu Jun 18 13:10:16 CEST 2020
vlc/vlc-3.0 | branch: master | Martin Storsjö <martin at martin.st> | Tue Jun 4 09:44:55 2019 +0300| [ed643d15865154fb367af669a7479d22dccddefb] | committer: Steve Lhomme
extras: tools: Remove broken makefile quoting of PATH
In makefiles, the quotes end up as part of the variable value.
(cherry picked from commit 87824da9229322f747c1bdedf84255b96e5a9d77)
Signed-off-by: Steve Lhomme <robux4 at ycbcr.xyz>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=ed643d15865154fb367af669a7479d22dccddefb
---
extras/tools/bootstrap | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/extras/tools/bootstrap b/extras/tools/bootstrap
index 029d1f6c16..e10f4e68aa 100755
--- a/extras/tools/bootstrap
+++ b/extras/tools/bootstrap
@@ -177,7 +177,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