[GRASS-SVN] r30116 - grass/trunk

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Feb 13 16:48:20 EST 2008


Author: neteler
Date: 2008-02-13 16:48:20 -0500 (Wed, 13 Feb 2008)
New Revision: 30116

Modified:
   grass/trunk/Makefile
Log:
check for svn2cl

Modified: grass/trunk/Makefile
===================================================================
--- grass/trunk/Makefile	2008-02-13 21:33:21 UTC (rev 30115)
+++ grass/trunk/Makefile	2008-02-13 21:48:20 UTC (rev 30116)
@@ -421,9 +421,12 @@
 
 changelog:
 	@ echo "creating ChangeLog file (following 'trunk' only)..."
-	@ # cvs2cl.pl creates a GNU style ChangeLog file:
-	@ # http://www.red-bean.com/cvs2cl
-	GRASS_PERL=${PERL} sh tools/cvs2cl.pl -F trunk -f ./ChangeLog
+	@ # svn2cl creates a GNU style ChangeLog file:
+	@ # http://ch.tudelft.nl/~arthur/svn2cl/
+	@if [ ! -x "`which svn2cl`" ] ; then \
+		echo "\"svn2cl\" is required, please install first from http://ch.tudelft.nl/~arthur/svn2cl/" ;	exit 1 ; \
+	fi
+	sh svn2cl ./ChangeLog
 
 
 builddemolocation:



More information about the grass-commit mailing list