As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Bash source code syntax highlighting (style: standard) with prefixed line numbers and code folding option.
Alternatively you can here view or download the uninterpreted source code file.
1 #!/bin/sh 2 3 iftype -t autoreconf >/dev/null 4 then 5 autoreconf -v 6 else 7 set -e 8 set -x 9 10 aclocal -I config 11 autoheader 12 automake --gnu --add-missing 13 autoconf 14 fi