~ubuntu-branches/ubuntu/utopic/autotools-dev/utopic

« back to all changes in this revision

Viewing changes to debian/configurewrapper

  • Committer: Bazaar Package Importer
  • Author(s): Henrique de Moraes Holschuh
  • Date: 2002-04-01 09:12:05 UTC
  • Revision ID: james.westby@ubuntu.com-20020401091205-4mxe2fuuz8p10dj0
Tags: 20020320.1
* Sync to CVS 20020320 (config.sub 20020307; config.guess 20020320)
  + config.guess (ia64:Linux:*:*): Output "ia64-unknown-linux-gnu"
  + config.guess (set_cc_for_build): Add c99 to list of candidates

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
# configurewrapper - Placeholder for code to correctly deal with host and
 
4
#                    build architecture for GNU autoconf-generated configure
 
5
#                    scripts
 
6
#
 
7
# Usage: configurewrapper [configure program [configure parameters...]]
 
8
#
 
9
# Default configure program is './configure'
 
10
#
 
11
_DEBIANCONFPRG=./configure
 
12
[ $? -gt 0 ] && {
 
13
        _DEBIANCONFPRG="$1"
 
14
        shift
 
15
}
 
16
exec "${_DEBIANCONFPRG}" "$@"