various miscellany related to versions, gtk2 build and packaging

This commit is contained in:
Paul Davis
2013-05-08 13:16:50 -04:00
parent 4cd27e4733
commit cadfc2aee1
6 changed files with 13 additions and 23 deletions

View File

@@ -89,7 +89,7 @@ if test x$STRIP != xall -a x$STRIP != xnone -a x$STRIP != xsome ; then
exit 1
fi
. ./define_versions.sh
. ../define_versions.sh
echo "Version is $version / $commit"
info_string="$version ($commit) built on `hostname` by `whoami` on `date`"

View File

@@ -1,23 +0,0 @@
#
# this is sourced by build and package, and executed from within build/linux_packaging
#
release_version=`grep -m 1 '[^A-Za-z_]LINUX_VERSION = ' ../../wscript | awk '{print $3}' | sed "s/'//g"`
r=`cut -d'"' -f2 < ../../libs/ardour/revision.cc | sed -e 1d -e "s/$release_version-//"`
if echo $r | grep -q -e - ; then
revcount=`echo $r | cut -d- -f1`
fi
commit=`echo $r | cut -d- -f2`
version=${release_version}${revcount:+.$revcount}
#
# Figure out the Build Type
#
# Note that the name of the cache file may vary from to time
#
if grep -q "DEBUG = True" ../../build/c4che/_cache.py; then
DEBUG="T"
else
DEBUG="F"
fi

View File

@@ -50,7 +50,7 @@ while [ $# -gt 0 ] ; do
esac
done
. ./define_versions.sh
. ../define_versions.sh
if [ x$DEBUG = xT ]; then
BUILDTYPE="dbg"