summaryrefslogtreecommitdiff
path: root/tools/linux_packaging/define_versions.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/linux_packaging/define_versions.sh')
-rw-r--r--tools/linux_packaging/define_versions.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/tools/linux_packaging/define_versions.sh b/tools/linux_packaging/define_versions.sh
deleted file mode 100644
index def50ec079..0000000000
--- a/tools/linux_packaging/define_versions.sh
+++ /dev/null
@@ -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