The GNU version of md5sum is picky about the spacing

git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/trunk@907 632fc199-4ca6-4c93-a231-07263d6284db
This commit is contained in:
DRC
2013-01-13 12:49:57 +00:00
parent d7201e7dbe
commit 4b3e749f0f

2
md5cmp
View File

@@ -3,7 +3,7 @@ if [ "$1" = "" -o "$2" = "" ]; then
exit 1
fi
echo $1 $2 >md5sum.txt
echo "$1 $2" >md5sum.txt
if [ ! -f $2 ]; then
echo $2 does not exist!
exit 1