~ubuntu-branches/ubuntu/precise/sflphone/precise

« back to all changes in this revision

Viewing changes to tools/bleach.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/sh
 
2
 
 
3
if [ ! -e configure.ac ]
 
4
then
 
5
        echo $0 must be called from top source directory.
 
6
        exit 1
 
7
fi
 
8
 
 
9
if [ -e Makefile ]
 
10
then
 
11
        make distclean
 
12
fi
 
13
 
 
14
rm -Rf aclocal.m4 compile config.guess config.h.in config.sub configure \
 
15
  depcomp install-sh ltmain.sh Makefile.in missing stamp-h.in autom4te.cache
 
16
 
 
17
for mf in `find . -name Makefile.in`
 
18
do
 
19
        test -e `basename "$mf" .in`.am && rm -f "$mf"
 
20
done