ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/autogen.sh
Revision: 1.13
Committed: Tue Dec 23 18:52:56 2008 UTC (15 years, 4 months ago) by pippijn
Content type: application/x-sh
Branch: MAIN
CVS Tags: rel-2_82, rel-2_81, rel-2_80, rel-3_0, rel-2_76, rel-2_77, rel-2_74, rel-2_75, rel-2_79, rel-2_90, rel-2_92, rel-2_93, rel-2_78
Changes since 1.12: +4 -4 lines
Log Message:
thats => that's
some more typo fixes in maps (i => I, missing commas, bad casing, etc.)

File Contents

# User Rev Content
1 root 1.1 #!/bin/sh
2 root 1.11 #libtoolize -f -c
3     #mv -f ltmain.sh utils
4 pippijn 1.13 aclocal-1.7 -I . || aclocal -I .
5     autoheader
6     automake-1.7 -a -c || automake -a -c
7     autoconf
8 root 1.8 if [ -x ../reconf ]; then
9     ../reconf "$@"
10     else
11     ./configure "$@"
12     fi
13 root 1.1