[NeoStats-Devel] [Commits] r2689 - in trunk: . include
| Newsgroups | gmane.comp.neostats.devel |
|---|---|
| Message-ID | <[email protected]> |
Author: Fish
Date: Mon Aug 8 11:47:12 2005
New Revision: 2689
Modified:
trunk/ChangeLog
trunk/include/version.sh
Log:
fix version.h generation
Modified: trunk/ChangeLog
==============================================================================
--- trunk/ChangeLog (original)
+++ trunk/ChangeLog Mon Aug 8 11:47:12 2005
@@ -4,6 +4,8 @@
Fish (F), Mark (M), DeadNotBuried (D)
===============================================================================
* NeoStats * Version 3.0.a3-dev
+ - This will make the version.h file reflect the current SVN Revision, not
+ the include SVN revision number (F)
- Perl 5.8.0 doesn't have XSRETURN_UV, so it does now via our checks (F)
- Perl Module Support now has most functionality of standard C Modules.
Need to fix up NeoStats.pm to do lots of sanity checking first though (F)
Modified: trunk/include/version.sh
==============================================================================
--- trunk/include/version.sh (original)
+++ trunk/include/version.sh Mon Aug 8 11:47:12 2005
@@ -1,6 +1,6 @@
# Script to generate SVN version information
-id=`svn info |grep 'Revision:'`
+id=`svn info ..|grep 'Revision:'`
id=`echo $id |sed 's/.* Revision: \(.*\) .* Exp .*/\1/'`
if test -r version.h