~noskcaj/ubuntu/saucy/sflphone/merge-1.2.3-2

« back to all changes in this revision

Viewing changes to tools/bleach.sh

  • Committer: Package Import Robot
  • Author(s): Francois Marier
  • Date: 2012-02-18 21:47:09 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120218214709-6362d71gqdsdkrj5
Tags: 1.0.2-1
* New upstream release
  - remove logging patch (applied upstream)
  - update s390 patch since it was partially applied upstream
* Include the Evolution plugin as a separate binary package

* Fix compilation issues on SH4 (closes: #658987)
* Merge Ubuntu's binutils-gold linking fix

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