Commit d0ebc826 authored by Rafaël Carré's avatar Rafaël Carré Committed by Jean-Baptiste Kempf

VLCKit: fix bootstrap

the script was not only invalid but it wouldn't call bootstrap either
(cherry picked from commit fc4007ed496df3948f68d15167aa75d188791c6d)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 964c85aa
......@@ -626,7 +626,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "top_srcdir=`pwd`/../../..\n\nif test $ACTION = \"clean\"\nthen\n exit 0\nfi\n\nif test \"$arch\" = \"x86_64\"; then\n export PATH=$top_srcdir/contrib/x86_64-apple-darwin10:$PATH\nfi\n\nexport PATH=$top_srcdir/extras/tools/build/bin:$PATH\n\n";
shellScript = "top_srcdir=`pwd`/../../..\n\nif test \"$ACTION\" = \"clean\"\nthen\n exit 0\nfi\n\nif test \"$arch\" = \"x86_64\"; then\n export PATH=$top_srcdir/contrib/x86_64-apple-darwin10:$PATH\nfi\n\nexport PATH=$top_srcdir/extras/tools/build/bin:$PATH\ncd \"$top_srcdir\" && ./bootstrap\n";
showEnvVarsInLog = 0;
};
6337548010ED091D0072A0D9 /* make */ = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment