mirror of
https://github.com/joel16/SDL2.git
synced 2024-12-11 04:54:05 +00:00
18 lines
363 B
Bash
Executable File
18 lines
363 B
Bash
Executable File
#!/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
|