1
mirror of https://code.videolan.org/videolan/vlc synced 2024-09-08 11:26:59 +02:00

contrib: use SVN only if a client is available

This commit is contained in:
Steve Lhomme 2005-05-08 10:45:37 +00:00
parent 9aed67ce94
commit dd20f62cad
2 changed files with 9 additions and 1213 deletions

View File

@ -66,4 +66,12 @@ else
exit 1
fi
if which svn >/dev/null; then
echo "SVN = svn" >> config.mak
elif which /sw/bin/svn >/dev/null; then
echo "SVN = /sw/bin/svn" >> config.mak
else
echo "You don't have a subversion client installed." >&2
fi
echo "PREFIX = `pwd`" >> config.mak

File diff suppressed because one or more lines are too long