~ubuntu-branches/ubuntu/dapper/fetchmail/dapper-security

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Nathaniel McCallum
  • Date: 2004-09-03 14:53:58 UTC
  • Revision ID: james.westby@ubuntu.com-20040903145358-dluq0c58tfe3cpcm
Tags: 6.2.5-8ubuntu2
Added versioned depend on lsb-base

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# $Id: autogen.sh 13 2003-12-22 01:50:30Z bob $
 
3
 
 
4
set -e
 
5
 
 
6
autopoint -f
 
7
 
 
8
sed -e 's/=_/=GT_/g' -e 's/=N_/=NGT_/g' \
 
9
        <po/Makefile.in.in  >po/Makefile.in.in.new
 
10
mv po/Makefile.in.in.new po/Makefile.in.in
 
11
 
 
12
aclocal-1.6
 
13
autoheader2.50 -f
 
14
autoconf2.50 -f
 
15
 
 
16
for i in config.guess config.sub; do
 
17
        test -r /usr/share/misc/${i} && cp -f /usr/share/misc/${i} .
 
18
        chmod 755 ${i}
 
19
done
 
20
 
 
21
for i in missing install-sh mkinstalldirs; do
 
22
        test -r /usr/share/automake-1.6/${i} && cp -f /usr/share/automake-1.6/${i} .
 
23
        chmod 755 ${i}
 
24
done
 
25
 
 
26
rm -rf m4 autom4te.cache
 
27
 
 
28
exit 0