~ubuntu-branches/ubuntu/precise/dspam/precise

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Julien Valroff, Julien Valroff, Thomas Preud'homme
  • Date: 2011-05-08 13:43:52 UTC
  • mfrom: (1.2.1 upstream) (8.2.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: james.westby@ubuntu.com-20110508134352-dxjx9m6tx1cbzlhq
Tags: 3.9.1~rc1+git20110419.29261fb+dfsg-1
[ Julien Valroff ]
* New git snapshot
* Install all dspam_* tools setgid so that they can be used by standard
  users
* Add symbols file for libdspam7
* Upload to unstable

[ Thomas Preud'homme ]
* Fix permissions on dspam_stats and missing opt-{in,out} directories
  (Closes: #394443)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
 
2
# $Id: autogen.sh,v 1.00 2009/12/22 12:25:59 sbajic Exp $
2
3
 
3
4
PROG=`basename $0`
4
5
 
5
6
KEYFILE=src/libdspam.c
6
7
 
7
 
# Some OS's have multiple versions (autoconf259, etc.) and don't have an 
 
8
# Some OS's have multiple versions (autoconf259, etc.) and don't have an
8
9
# autoconf binary
9
10
 
10
11
AUTOCONF=`which autoconf`
22
23
    fi
23
24
    AUTOHEADER=autoheader
24
25
else
25
 
    FINDPATH=`echo ${PATH}|sed -e 's,:, ,g'` 
 
26
    FINDPATH=`echo ${PATH}|sed -e 's,:, ,g'`
26
27
    AUTOCONF=`find ${FINDPATH} -name "autoconf*"|sort -r|head -1`
27
28
    AUTOMAKE=`find ${FINDPATH} -name "automake*"|sort -r|head -1`
28
29
    ACLOCAL=`find ${FINDPATH} -name "aclocal*"|sort -r|head -1`
74
75
${AUTOHEADER} ${AUTOHEADER_FLAGS}  || die
75
76
${AUTOMAKE} ${AUTOMAKE_FLAGS}      || die
76
77
${AUTOCONF} ${AUTOCONF_FLAGS}      || die
77