diff options
author | Shaun McCance <shaunm@redhat.com> | 2021-02-01 20:15:25 -0500 |
---|---|---|
committer | Shaun McCance <shaunm@redhat.com> | 2021-02-01 20:15:25 -0500 |
commit | e1fe3fb6f7a412a281a515f1127f5cc73f851e12 (patch) | |
tree | 0393bb8b2217440accb7746bc1c517be15a1de75 /autogen.sh | |
parent | a97c9ed35baa68ddefa8034cf97e13718034a246 (diff) | |
download | yelp-tools-e1fe3fb6f7a412a281a515f1127f5cc73f851e12.tar.gz |
Remove autotools stuff and fix up some data filespython-port
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/autogen.sh b/autogen.sh deleted file mode 100755 index 302e578..0000000 --- a/autogen.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh -# Run this to generate all the initial makefiles, etc. - -test -n "$srcdir" || srcdir=`dirname "$0"` -test -n "$srcdir" || srcdir=. - -olddir=`pwd` -cd $srcdir - -AUTORECONF=`which autoreconf` -if test -z $AUTORECONF; then - echo "*** No autoreconf found, please intall it ***" - exit 1 -fi - -autoreconf --force --install --verbose - -cd $olddir -test -n "$NOCONFIGURE" || "$srcdir/configure" "$@" |