Applied patch from Slava Semushin to improve SVN checks (thank you).

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1342 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2007-02-26 15:21:15 +00:00
parent 1e3a92d617
commit bc20c8ee50
3 changed files with 5 additions and 2 deletions

View File

@ -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>

1
THANKS
View File

@ -24,6 +24,7 @@ Josef Whiter <josef(at)toxicpanda(dot)com> - parse 'Entering directory' build me
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:
----------------------------------

View File

@ -55,8 +55,8 @@ AC_CHECK_FUNCS([gethostname ftruncate fgetpos getcwd gettimeofday isascii mblen
# 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