~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to tools/build-system/automatic-build-machine.sh

  • Committer: Package Import Robot
  • Author(s): Whoopie
  • Date: 2012-03-22 10:29:10 UTC
  • mfrom: (4.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20120322102910-tb8hugi2su1tguwh
Tags: 1.0.2-1ubuntu1
* Apply some upstream patches to fix FTBFS (LP: #913018):
  - debian/patches/05_glib_includes.patch: fix glib includes.
  - debian/patches/06_use_XkbKeycodeToKeysym.patch: use 
    XkbKeycodeToKeysym instead of (deprecated) XKeycodeToKeysym.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
#####################################################
 
3
# File Name: send-emails.sh
 
4
#
 
5
# Purpose :
 
6
#
 
7
# Author: Julien Bonjean (julien@bonjean.info)
 
8
#
 
9
# Creation Date: 2009-04-20
 
10
# Last Modified:
 
11
#####################################################
 
12
 
 
13
TAG=`date +%Y-%m-%d`
 
14
ROOT_DIR="/home/projects/sflphone"
 
15
SCRIPTS_DIR="${ROOT_DIR}/build-system"
 
16
 
 
17
cd ${SCRIPTS_DIR}
 
18
 
 
19
${SCRIPTS_DIR}/launch-build-machine.sh $*
 
20
 
 
21
${SCRIPTS_DIR}/send-emails.sh $?
 
22
 
 
23
exit 0
 
24