File: prepare

package info (click to toggle)
mutt 1.5.13-1.1etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 14,128 kB
  • ctags: 5,052
  • sloc: ansic: 75,353; sh: 3,670; perl: 971; makefile: 673; yacc: 318; awk: 17
file content (16 lines) | stat: -rwxr-xr-x 372 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

if autoreconf --install --include=m4 \
  && ./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