From: Matthias Andree Date: Wed, 19 Jul 2006 23:12:49 +0000 (+0000) Subject: Update prepare: remove -dev (always enable dependency tracking) and X-Git-Tag: mutt-1-5-13-rel~72 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=38d59cc1c2a6ea426b8c608e5c1d55773926df69;p=mutt Update prepare: remove -dev (always enable dependency tracking) and use autoreconf -i instead of running tools by hand. --- diff --git a/prepare b/prepare index fc9c44e2..4c90dca3 100755 --- a/prepare +++ b/prepare @@ -1,18 +1,11 @@ -#!/bin/sh -- +#!/bin/sh -if test x"$1" = x"-dev" ; then - include_deps= - shift -else - include_deps="-i" -fi - -if aclocal -I m4 && autoheader \ - && automake $include_deps && autoconf && ./configure "$@" +if autoreconf --install --include=m4 \ + && ./configure "$@" then echo - echo "The mutt source code was successfully prepared." - echo "Type make && make install to build and install mutt." + echo "The mutt source code was successfully prepared and configured." + echo "Type make && make install to build and install mutt." echo else echo