rename svn revision variable to one with underscore, to not pollute

application namespace
This commit is contained in:
Ben Gras 2007-03-30 15:17:32 +00:00
parent 7507ebfeca
commit a2d3b518d8
2 changed files with 4 additions and 4 deletions

View File

@ -179,8 +179,8 @@ PRIVATE void announce(void)
{ {
/* Display the MINIX startup banner. */ /* Display the MINIX startup banner. */
kprintf("\nMINIX %s.%s. " kprintf("\nMINIX %s.%s. "
#ifdef SVN_REVISION #ifdef _SVN_REVISION
"(" SVN_REVISION ")\n" "(" _SVN_REVISION ")\n"
#endif #endif
"Copyright 2006, Vrije Universiteit, Amsterdam, The Netherlands\n", "Copyright 2006, Vrije Universiteit, Amsterdam, The Netherlands\n",
OS_RELEASE, OS_VERSION); OS_RELEASE, OS_VERSION);

View File

@ -287,8 +287,8 @@ then
echo " echo "
/* Added by release script */ /* Added by release script */
#ifndef SVN_REVISION #ifndef _SVN_REVISION
#define SVN_REVISION \"$REVISION\" #define _SVN_REVISION \"$REVISION\"
#endif" >>$RELEASEDIR/usr/src/include/minix/sys_config.h #endif" >>$RELEASEDIR/usr/src/include/minix/sys_config.h
else else