mutt stable branch with some hacks
at jcs 15 lines 355 B view raw
1#!/bin/sh 2 3if autoreconf --install && ./configure "$@" 4then 5 echo 6 echo "The mutt source code was successfully prepared and configured." 7 echo "Type make && make install to build and install mutt." 8 echo 9else 10 echo 11 echo "Some part of the preparation process failed." 12 echo "Please refer to doc/devel-notes.txt for details." 13 echo 14 exit 1 15fi