Commit dd20f62c authored by Steve Lhomme's avatar Steve Lhomme

contrib: use SVN only if a client is available

parent 9aed67ce
......@@ -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
This diff is collapsed.
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