File: prepare

package info (click to toggle)
mutt 2.2.13-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 25,908 kB
  • sloc: ansic: 95,475; sh: 5,169; perl: 2,137; python: 548; makefile: 485; sed: 16
file content (15 lines) | stat: -rwxr-xr-x 355 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

if autoreconf --install && ./configure "$@"
then
  echo
  echo "The mutt source code was successfully prepared and configured."
  echo "Type   make && make install   to build and install mutt."
  echo
else
  echo
  echo "Some part of the preparation process failed."
  echo "Please refer to doc/devel-notes.txt for details."
  echo
  exit 1
fi