view build-scripts/updaterev.sh @ 3337:9ac6f0782dd6

Fixed bug #814 Daniele Forghieri 2009-09-30 15:40:53 PDT To compile the source in libm the variable huge must be renamed, I choose huge_val The patch attached change it so it compiles
author Sam Lantinga <slouken@libsdl.org>
date Sun, 04 Oct 2009 09:51:04 +0000
parents b64c1d23039b
children 5e7e1f1a4056
line wrap: on
line source

#!/bin/sh
#
# Generate a header file with the current source revision

cd `dirname $0`
srcdir=..
header=$srcdir/include/SDL_revision.h

rev=`sh showrev.sh`
if [ "$rev" != "" ]; then
    echo "#define SDL_REVISION $rev" >$header.new
    if diff $header $header.new >/dev/null 2>&1; then
        rm $header.new
    else
        mv $header.new $header
    fi
fi