Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fix bug 1574 - updaterev.sh fails when path contains spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
ferzkopp committed Mar 10, 2013
1 parent 07c84dd commit b40112e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build-scripts/updaterev.sh
Expand Up @@ -10,11 +10,11 @@ header=$outdir/include/SDL_revision.h
rev=`sh showrev.sh 2>/dev/null`
if [ "$rev" != "" -a "$rev" != "hg-0:baadf00d" ]; then
revnum=`echo $rev | sed 's,hg-\([0-9]*\).*,\1,'`
echo "#define SDL_REVISION \"$rev\"" >$header.new
echo "#define SDL_REVISION_NUMBER $revnum" >>$header.new
echo "#define SDL_REVISION \"$rev\"" >"$header.new"
echo "#define SDL_REVISION_NUMBER $revnum" >>"$header.new"
if diff $header $header.new >/dev/null 2>&1; then
rm $header.new
rm "$header.new"
else
mv $header.new $header
mv "$header.new" "$header"
fi
fi

0 comments on commit b40112e

Please sign in to comment.