*add* adding a dummy configure file which reports for the user that we've changed to cmake

*add* make_relase.sh convenience script which creates a tarball for release (usage: ./make_release.sh RELEASE_VERSION)
*fix* get_svnrev.sh fixed is the fallback version is produced



git-svn-id: http://tint2.googlecode.com/svn/trunk@494 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
Andreas.Fink85
2010-06-13 09:51:52 +00:00
parent 5739a2ecbc
commit d103fe00d7
3 changed files with 33 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/bash
FALLBACK="0.10-svn"
FALLBACK=\"0.10-svn\"
if [[ $# -eq 0 ]]; then
DIR=.
@@ -22,7 +22,7 @@ fi
if [[ ${REV_OLD} != ${REV} ]]; then
echo "Building new version.h"
echo "#define VERSION_STRING "${REV}"" > version.h
echo "#define VERSION_STRING ${REV}" > version.h
fi