From 72241f1f0378d52975083b9ad4d3af1e3e12df7b Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 11 Aug 2010 14:27:53 +0000 Subject: fixed spelling error svn path=/trunk/; revision=13784 --- .../pure-data.umlaeute.git-auto-builder.sh | 37 ++++++++++++++++++++++ .../pure-data.umlauete.git-auto-builder.sh | 37 ---------------------- 2 files changed, 37 insertions(+), 37 deletions(-) create mode 100755 scripts/auto-build/pure-data.umlaeute.git-auto-builder.sh delete mode 100755 scripts/auto-build/pure-data.umlauete.git-auto-builder.sh (limited to 'scripts/auto-build') diff --git a/scripts/auto-build/pure-data.umlaeute.git-auto-builder.sh b/scripts/auto-build/pure-data.umlaeute.git-auto-builder.sh new file mode 100755 index 00000000..387b2855 --- /dev/null +++ b/scripts/auto-build/pure-data.umlaeute.git-auto-builder.sh @@ -0,0 +1,37 @@ +#!/bin/sh + +# the source dir where this script is +## this could be done more easily with ${0%/*} +SCRIPT_DIR=$(echo $0 | sed 's|\(.*\)/.*$|\1|') +. $SCRIPT_DIR/auto-build-common + +# the name of this script +## this could be done more easily with ${0##*/} +SCRIPT=$(echo $0| sed 's|.*/\(.*\)|\1|g') + +# convert into absolute path +cd "${SCRIPT_DIR}/../.." +auto_build_root_dir=`pwd` +echo "build root: $auto_build_root_dir" +rsync_distro "$auto_build_root_dir" + + +cd "${auto_build_root_dir}" +echo "--------------------------------------------------------------------------------" +git pull +echo "--------------------------------------------------------------------------------" +./autogen.sh +echo "--------------------------------------------------------------------------------" +./configure +echo "--------------------------------------------------------------------------------" +make +echo "--------------------------------------------------------------------------------" +mkdir "${auto_build_root_dir}/testinstall" +make DESTDIR="${auto_build_root_dir}/testinstall" install +echo "--------------------------------------------------------------------------------" +make dist + + +# since the above test can cause this script to exit with an error, force it +# to be happy to prevent getting automated error emails to root +true diff --git a/scripts/auto-build/pure-data.umlauete.git-auto-builder.sh b/scripts/auto-build/pure-data.umlauete.git-auto-builder.sh deleted file mode 100755 index 387b2855..00000000 --- a/scripts/auto-build/pure-data.umlauete.git-auto-builder.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh - -# the source dir where this script is -## this could be done more easily with ${0%/*} -SCRIPT_DIR=$(echo $0 | sed 's|\(.*\)/.*$|\1|') -. $SCRIPT_DIR/auto-build-common - -# the name of this script -## this could be done more easily with ${0##*/} -SCRIPT=$(echo $0| sed 's|.*/\(.*\)|\1|g') - -# convert into absolute path -cd "${SCRIPT_DIR}/../.." -auto_build_root_dir=`pwd` -echo "build root: $auto_build_root_dir" -rsync_distro "$auto_build_root_dir" - - -cd "${auto_build_root_dir}" -echo "--------------------------------------------------------------------------------" -git pull -echo "--------------------------------------------------------------------------------" -./autogen.sh -echo "--------------------------------------------------------------------------------" -./configure -echo "--------------------------------------------------------------------------------" -make -echo "--------------------------------------------------------------------------------" -mkdir "${auto_build_root_dir}/testinstall" -make DESTDIR="${auto_build_root_dir}/testinstall" install -echo "--------------------------------------------------------------------------------" -make dist - - -# since the above test can cause this script to exit with an error, force it -# to be happy to prevent getting automated error emails to root -true -- cgit v1.2.1