summaryrefslogtreecommitdiff
path: root/contrib/configure-in-place
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2018-10-19 14:45:42 -0700
committerGitHub <noreply@github.com>2018-10-19 14:45:42 -0700
commitce8c429281fd1f7e4ac4d2b7133152c1d370df0c (patch)
tree407400e728621cc9a5262e7112a93bd6acd0835a /contrib/configure-in-place
parent7de0540252b62080ee9f98617f5718cb1ae08579 (diff)
Remove autotools build system. (#2639)
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