vlc | branch: master | Martin Storsjö <[email protected]> | 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 _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
