diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2003-03-08 01:48:13 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2003-03-08 01:48:13 (GMT) |
commit | 1f96af37e3c4396e10d39239928c689ea5d0a9a1 (patch) | |
tree | 5f5b74f6564784552ce41cf214e87bab75790f20 /tools | |
parent | 27e9e50c458d3731af5fd13577eebe434a860b61 (diff) | |
download | monitoring-plugins-1f96af37e3c4396e10d39239928c689ea5d0a9a1.tar.gz |
Have to run through whole automake procedure as datestamp in RELEASE variable
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@381 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/sfsnapshot | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/tools/sfsnapshot b/tools/sfsnapshot index e5a13d4..34c5795 100755 --- a/tools/sfsnapshot +++ b/tools/sfsnapshot | |||
@@ -33,16 +33,19 @@ function make_dist { | |||
33 | else | 33 | else |
34 | cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/nagiosplug co -r $cvs_rel nagiosplug | 34 | cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/nagiosplug co -r $cvs_rel nagiosplug |
35 | cd $PROJECT | 35 | cd $PROJECT |
36 | aclocal -I lib | ||
37 | autoheader | ||
38 | autoconf | ||
39 | automake --add-missing --copy | ||
40 | autoreconf | ||
41 | ./configure | ||
42 | fi | 36 | fi |
43 | 37 | ||
38 | sed 's/^VER=.*/VER=$v$DS/;s/^REL=.*/REL=snapshot/' configure.in > configure.tmp | ||
39 | mv configure.tmp configure.in | ||
40 | aclocal -I lib | ||
41 | autoheader | ||
42 | autoconf | ||
43 | automake --add-missing --copy | ||
44 | autoreconf | ||
45 | ./configure | ||
46 | |||
44 | # Make the Nagiosplug dist tarball | 47 | # Make the Nagiosplug dist tarball |
45 | VER=$v$DS VERSION=$v$DS REL=snapshot make -e dist | 48 | make dist |
46 | 49 | ||
47 | # End ssh | 50 | # End ssh |
48 | EOF | 51 | EOF |