~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to reconf

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Schuldei
  • Date: 2009-04-02 23:35:45 UTC
  • mto: (1.2.1 upstream) (3.2.3 sid)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20090402233545-geixkwhe3izccjt7
Tags: upstream-7.19.4
ImportĀ upstreamĀ versionĀ 7.19.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
#
3
 
# $Id: reconf,v 1.4 2001/05/30 07:59:47 bagder Exp $
4
 
#
5
 
# re autoconf/automake shell script
6
 
#
7
 
 
8
 
die(){
9
 
        echo "$@" ; exit
10
 
}
11
 
 
12
 
aclocal -I . || die "The command 'aclocal -I .' failed"
13
 
autoheader   || die "The command 'autoheader' failed"
14
 
automake     || die "The command 'automake' failed"
15
 
autoconf     || die "The command 'autoconf' failed"