From: Øyvind Kolås Date: Tue, 30 Jul 2019 08:03:04 +0000 (+0200) Subject: build: remove autogen.sh, remnants of autotools X-Git-Tag: archive/raspbian/1%0.1.106-3+rpi1^2~15^2~11^2~41 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=cab54c36d66bc067624e94b7775f269d3d20f8df;p=babl.git build: remove autogen.sh, remnants of autotools --- diff --git a/autogen.sh b/autogen.sh deleted file mode 100755 index 55fae8c..0000000 --- a/autogen.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -# This script does all the magic calls to automake/autoconf and -# friends that are needed to configure a cvs checkout. As described in -# the file HACKING you need a couple of extra tools to run this script -# successfully. -# -# If you are compiling from a released tarball you don't need these -# tools and you shouldn't use this script. Just call ./configure -# directly. - -test -n "$srcdir" || srcdir=`dirname "$0"` -test -n "$srcdir" || srcdir=. - -ORIGDIR=`pwd` -cd $srcdir - -AUTORECONF=`which autoreconf` -if test -z $AUTORECONF; then - echo "*** No autoreconf found, please install it ***" - exit 1 -fi - -autoreconf --force --install --verbose - -cd $ORIGDIR -test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"