~ubuntu-branches/ubuntu/karmic/etoys/karmic

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Holger Levsen
  • Date: 2008-06-12 22:05:31 UTC
  • Revision ID: james.westby@ubuntu.com-20080612220531-v1hii75cr0yww7tm
Tags: upstream-3.0.1916+svn132
ImportĀ upstreamĀ versionĀ 3.0.1916+svn132

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
PKG_NAME="etoys"
 
8
 
 
9
[ -f $srcdir/etoys.in ] || {
 
10
    echo -n "**Error**: Directory '" $srcdir "' does not look like the"
 
11
    echo " top-level $PKG_NAME directory"
 
12
    exit 1
 
13
}
 
14
 
 
15
cd $srcdir
 
16
 
 
17
[ -f configure ] || autoconf
 
18
 
 
19
./configure "$@"