summaryrefslogtreecommitdiff
path: root/contrib/configure-in-place
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2018-10-31 16:11:21 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2018-10-31 16:11:21 -0500
commit3e4d948f50b46b0f4cf9ecb581ad5efb61d6933d (patch)
tree7c8965c52a838728ccb9de339c45e7831b95c02d /contrib/configure-in-place
parent92dfe34ca1537391328f441ecb8e86f41f55edd4 (diff)
parent6a89ff6d106a012442f0ab3b212dc3d26a758da3 (diff)
Merge branch 'master' of https://github.com/CVC4/CVC4 into extRewBv
Diffstat (limited to 'contrib/configure-in-place')
-rwxr-xr-xcontrib/configure-in-place30
1 files changed, 0 insertions, 30 deletions
diff --git a/contrib/configure-in-place b/contrib/configure-in-place
deleted file mode 100755
index cc0e9e387..000000000
--- a/contrib/configure-in-place
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash -ex
-#
-# configure-in-place
-# Morgan Deters <mdeters@cs.nyu.edu> for CVC4
-# Copyright (c) 2010-2014 The CVC4 Project
-#
-# usage: configure-in-place [ arguments... ]
-#
-# This script configures CVC4 in the source directory (from where it
-# should be invoked).
-#
-
-if [ -e .git ] && ! [ x"$1" = x-f ]; then
- echo
- echo "DO NOT USE THIS IN GIT 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
-
-if [ x"$1" = x-f ]; then
- shift
-fi
-
-./configure "$@"
-CURRENT_BUILD="$(grep '^CURRENT_BUILD *= *' builds/current | awk 'BEGIN {FS=" *= *"} {print$2}')"
-builds/$CURRENT_BUILD/config.status
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback