mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 15:33:54 +01:00
version.c.SH: Fix generation not incrementing
This commit is contained in:
parent
3b9507d0e9
commit
2a4b3ea648
1 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ echo "Extracting $package/src/version.c..."
|
||||||
|
|
||||||
if test -r version.c.last
|
if test -r version.c.last
|
||||||
then
|
then
|
||||||
generation=`sed -n 's/^char \*generation = \"\(.*\)\";/\1/p' < version.c.last`
|
generation=`sed -n 's/^const char \*generation = \"\(.*\)\";/\1/p' < version.c.last`
|
||||||
if test ! "$generation" ; then generation=0; fi
|
if test ! "$generation" ; then generation=0; fi
|
||||||
else
|
else
|
||||||
generation=0
|
generation=0
|
||||||
|
@ -63,7 +63,7 @@ const char *infotext[] =
|
||||||
"$package --",
|
"$package --",
|
||||||
"Based on the original code written by Jarkko Oikarinen",
|
"Based on the original code written by Jarkko Oikarinen",
|
||||||
"Copyright 1988, 1989, 1990, 1991 University of Oulu, Computing Center",
|
"Copyright 1988, 1989, 1990, 1991 University of Oulu, Computing Center",
|
||||||
"Copyright (c) 1996-2001 Hybrid Development Team",
|
"Copyright (c) 1996-2001 Hybrid Development Team",
|
||||||
"Copyright (c) 2002-2009 ircd-ratbox Development Team",
|
"Copyright (c) 2002-2009 ircd-ratbox Development Team",
|
||||||
"Copyright (c) 2005-2016 charybdis development team",
|
"Copyright (c) 2005-2016 charybdis development team",
|
||||||
" ",
|
" ",
|
||||||
|
|
Loading…
Reference in a new issue