~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): Mark Purcell
  • Date: 2012-05-19 21:46:37 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20120519214637-la8rbrford5kj6m3
Tags: 1.1.0-1
* New upstream release 
  - Fixes "FTBFS with libccrtp-dev/2.0.2 from experimental" (Closes: #663282)
* NEW Maintainer: Debian VoIP Team - Thanks Francois for your work.
  - (Closes: #665789: O: sflphone -- SIP and IAX2 compatible VoIP phone)
* Added Build-Depends: libdbus-c++-bin
* Add gcc47-fixes.patch

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