~ubuntu-branches/ubuntu/utopic/gnome-common/utopic

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2009-10-10 12:21:12 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20091010122112-9pe6ufi26yfpps3h
Tags: 2.28.0-1
* New upstream release.
  - debian/patches/01_automake-1.11.patch:
    + Removed, fixed upstream.
* debian/watch: Don't uupdate.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# Run this to generate all the initial makefiles, etc.
 
3
 
 
4
srcdir=`dirname $0`
 
5
test -z "$srcdir" && srcdir=.
 
6
 
 
7
REQUIRED_AUTOMAKE_VERSION=1.9
 
8
 
 
9
PKG_NAME="Gnome Common Macros"
 
10
 
 
11
(test -f $srcdir/configure.in \
 
12
## put other tests here
 
13
) || {
 
14
    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
 
15
    echo " top-level $PKG_NAME directory"
 
16
    exit 1
 
17
}
 
18
 
 
19
. $srcdir/macros2/gnome-autogen.sh