~ubuntu-branches/ubuntu/oneiric/soqt/oneiric

« back to all changes in this revision

Viewing changes to cfg/m4/reconfigure.m4

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2004-05-29 02:58:50 UTC
  • Revision ID: james.westby@ubuntu.com-20040529025850-nkh0l2b0mixwkcgh
Tags: 1.0.2-3
Build against coin-2, rather than coin-1.  Closes: #241102.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# SIM_AC_CREATE_RECONFIGURE
 
2
#
 
3
# This macro creates a script called "reconfigure" in builldir that can be
 
4
# run instead of writing all the command line options you need all over
 
5
# again the next time you need to run configure.
 
6
 
 
7
AC_DEFUN([SIM_AC_CREATE_RECONFIGURE], [
 
8
# **************************************************************************
 
9
# create "reconfigure" script for invoking configure again with the exact
 
10
# same command line options as last time.
 
11
cat >reconfigure <<END_OF_SCRIPT
 
12
#! /bin/sh
 
13
echo $[0] $[@]
 
14
$[0] $[@]
 
15
END_OF_SCRIPT
 
16
chmod 755 reconfigure
 
17
])
 
18