Revision: 1342 http://svn.sourceforge.net/geany/?rev=1342&view=rev Author: eht16 Date: 2007-02-26 07:21:15 -0800 (Mon, 26 Feb 2007)
Log Message: ----------- Applied patch from Slava Semushin to improve SVN checks (thank you).
Modified Paths: -------------- trunk/ChangeLog trunk/THANKS trunk/configure.in
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2007-02-26 13:32:34 UTC (rev 1341) +++ trunk/ChangeLog 2007-02-26 15:21:15 UTC (rev 1342) @@ -1,6 +1,8 @@ 2007-02-26 Enrico Tröger enrico.troeger@uvena.de
* src/tools.c: Fixed wrong sensitiveness of custom commands menu items. + * configure.in, THANKS: + Applied patch from Slava Semushin to improve SVN checks (thank you).
2007-02-25 Enrico Tröger enrico.troeger@uvena.de
Modified: trunk/THANKS =================================================================== --- trunk/THANKS 2007-02-26 13:32:34 UTC (rev 1341) +++ trunk/THANKS 2007-02-26 15:21:15 UTC (rev 1342) @@ -24,6 +24,7 @@ Jeff Pohlmeyer <yetanothergeek(at)gmail(dot)com> - "Allow DnD", "Use tabs" and other great patches Tomás Vírseda <kaskaras(at)gmail(dot)com> - sort open files patch Dirk Weber <dietrich-weber(at)web(dot)de> +Slava Semushin <slava(dot)semushin(at)gmail(dot)com> - patch to improve SVN checks in cofigure script
Translators: ----------------------------------
Modified: trunk/configure.in =================================================================== --- trunk/configure.in 2007-02-26 13:32:34 UTC (rev 1341) +++ trunk/configure.in 2007-02-26 15:21:15 UTC (rev 1342) @@ -55,8 +55,8 @@
# get svn revision -SVN=`which svn` -if test -d ".svn" -a -x "${SVN}" +SVN=`which svn 2>/dev/null` +if test -d ".svn" -a "x${SVN}" != "x" -a -x "${SVN}" then REVISION=r`$SVN info|grep 'Last Changed Rev'|cut -d' ' -f4` else
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.