diff options
author | Ori Bernstein <ori@eigenstate.org> | 2015-01-03 20:03:20 -0800 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2015-01-03 20:03:20 -0800 |
commit | bc40668ce5784f97856add94d43e8f3b36e3749a (patch) | |
tree | 9889ba062eb8a991f612c1f25b61aaac8ac4c58a /lib/date | |
parent | bb2bde9cb692c50a3a2a230a68591a85c38e4f79 (diff) | |
download | mc-bc40668ce5784f97856add94d43e8f3b36e3749a.tar.gz |
Delete configure script.
We removed the makefiles that use it.
Diffstat (limited to 'lib/date')
-rwxr-xr-x | lib/date/configure | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/lib/date/configure b/lib/date/configure deleted file mode 100755 index 37fe623..0000000 --- a/lib/date/configure +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/sh - -prefix="/usr/local" - -for i in `seq 300`; do - echo "Lots of output to emulate automake... ok" - echo "Testing for things you'll never use... fail" - echo "Satisfying the fortran77 lobby... ok" - echo "Burning CPU time checking for the bloody obvious... ok" -done -echo "Automake emulated successfully" - -INST_ROOT='/usr/local' - -for arg in $*; do - shift 1 - case $arg in - "--prefix" | "-p") - prefix=shift $* - ;; - --prefix=*) - prefix=`echo $arg | sed 's/^--prefix=//g'` - ;; - "--help" | "-h") - echo "Usage:" - echo " --prefix | -p: The prefix to install to" - break; - ;; - *) echo "Unrecognized argument $arg";; - esac -done - -OS=`uname` - -echo export INST_ROOT=$prefix > config.mk -case $OS in - *Linux*) - echo 'export SYS=linux' >> config.mk - ;; - *Darwin*) - echo 'export SYS=osx' >> config.mk - ;; - *) - echo 'Unknown architecture.' - ;; -esac - -cat << EOF - Building with: - prefix=$prefix -EOF - |