diff options
author | Jeremy T. Bouse <undrgrid@users.sourceforge.net> | 2003-02-09 18:59:53 (GMT) |
---|---|---|
committer | Jeremy T. Bouse <undrgrid@users.sourceforge.net> | 2003-02-09 18:59:53 (GMT) |
commit | e8886393147a9ca827515796bc1471fb28cc562a (patch) | |
tree | e45a15c7fa44ae3bbfa8e11e1562c147029c174f | |
parent | cad530a113e3049b1b20d8e1b93e9c486d29720a (diff) | |
download | monitoring-plugins-e8886393147a9ca827515796bc1471fb28cc562a.tar.gz |
Reordered program calls so autoheader was called before automake thus
getting rid of errors for header files not being present when automake
was called. Also puts it inline with documentation in
INSTALL & INSTALLING
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@303 f882894a-f735-0410-b71e-b25c423dba1c
-rwxr-xr-x | tools/setup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/setup b/tools/setup index b0de8f6..293aec6 100755 --- a/tools/setup +++ b/tools/setup | |||
@@ -1,9 +1,9 @@ | |||
1 | #! /bin/sh | 1 | #! /bin/sh |
2 | 2 | ||
3 | aclocal | 3 | aclocal |
4 | automake | ||
5 | autoheader | ||
6 | autoconf | 4 | autoconf |
5 | autoheader | ||
6 | automake | ||
7 | 7 | ||
8 | if [ -f debian/rules ] ; then | 8 | if [ -f debian/rules ] ; then |
9 | chmod +x debian/rules | 9 | chmod +x debian/rules |