summaryrefslogtreecommitdiff
path: root/contrib/configure-in-place
blob: 9da584d36f9d6d12c385771a736848e709eb425e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh
#
# configure-in-place
# Morgan Deters <mdeters@cs.nyu.edu> for CVC4
# Copyright (c) 2010, 2011  The CVC4 Project
#
# usage: configure-in-place [ arguments... ]
#
# This script configures CVC4 in the source directory (from where it
# should be invoked).
#

if [ -e .svn ]; then
  echo
  echo "DO NOT USE THIS IN SUBVERSION WORKING DIRECTORIES!"
  echo
  echo "You might accidentally commit Makefiles in the source directories"
  echo "improperly, since they exist in the source directory for"
  echo "another purpose."
  echo
  exit 1
fi

./configure "$@"
. builds/current
builds/$(CURRENT_BUILD)/config.status
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback