Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
93b13032
Commit
93b13032
authored
Oct 07, 2010
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
contribs: store path of external tools with ""
helps when paths have a space in them (/c/Program Files/...)
parent
18ef3eb5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
extras/contrib/bootstrap
extras/contrib/bootstrap
+4
-4
No files found.
extras/contrib/bootstrap
View file @
93b13032
...
@@ -319,22 +319,22 @@ echo "set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)" >> toolchain.cmake
...
@@ -319,22 +319,22 @@ echo "set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)" >> toolchain.cmake
fi
fi
if
wget
--version
>
/dev/null 2>&1
;
then
if
wget
--version
>
/dev/null 2>&1
;
then
echo
"WGET =
`
which wget
`
-c --passive"
>>
config.mak
echo
"WGET =
\"
`
which wget
`
\"
-c --passive"
>>
config.mak
elif
test
-z
`
curl
--version
>
/dev/null 2>&1
`
;
then
elif
test
-z
`
curl
--version
>
/dev/null 2>&1
`
;
then
echo
"WGET =
`
which curl
`
-L -O"
>>
config.mak
echo
"WGET =
\"
`
which curl
`
\"
-L -O"
>>
config.mak
else
else
echo
"You need at least wget or curl to fetch the packages."
>
&2
echo
"You need at least wget or curl to fetch the packages."
>
&2
exit
1
exit
1
fi
fi
if
svn
--version
>
/dev/null 2>&1
;
then
if
svn
--version
>
/dev/null 2>&1
;
then
echo
"SVN =
`
which svn
`
"
>>
config.mak
echo
"SVN =
\"
`
which svn
`
\"
"
>>
config.mak
else
else
echo
"You do not have a subversion client in your PATH."
>
&2
echo
"You do not have a subversion client in your PATH."
>
&2
fi
fi
if
git
--version
>
/dev/null 2>&1
;
then
if
git
--version
>
/dev/null 2>&1
;
then
echo
"GIT =
`
which git
`
"
>>
config.mak
echo
"GIT =
\"
`
which git
`
\"
"
>>
config.mak
else
else
echo
"You do not have a Git client in your PATH."
>
&2
echo
"You do not have a Git client in your PATH."
>
&2
fi
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment