diff options
author | Daniel Stenberg <daniel@haxx.se> | 2009-01-01 20:50:59 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2009-01-01 20:50:59 +0000 |
commit | 9af4cf219e4867cdf024ec11abd263407db095d2 (patch) | |
tree | 83a4762a2509e71b708cbe341192b7ac2cc8e70a /reconf | |
parent | cf4b88fcc4469bf24e604816712053e41609290f (diff) |
- 'reconf' is removed since we rather have users use 'buildconf'
Diffstat (limited to 'reconf')
-rwxr-xr-x | reconf | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/reconf b/reconf deleted file mode 100755 index 43e55cdb5..000000000 --- a/reconf +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# -# $Id$ -# -# re autoconf/automake shell script -# - -die(){ - echo "$@" ; exit -} - -aclocal -I . -I m4 || die "The command 'aclocal -I . -I m4' failed" -autoheader || die "The command 'autoheader' failed" -automake || die "The command 'automake' failed" -autoconf || die "The command 'autoconf' failed" |