summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--INSTALL5
-rwxr-xr-xautogen.sh8
3 files changed, 13 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index c795c8a..e9582ea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-08-30 Jannis Pohlmann <jannis@xfce.org>
+
+ * autogen.sh: Do not print errors when trying to detect the
+ revision of a git svn repository.
+
2008-08-25 Brian Tarricone <kelnos@xfce.org>
* exo-helper/exo-preferred-applications.desktop.in: Include
diff --git a/INSTALL b/INSTALL
index 5458714..d3c5b40 100644
--- a/INSTALL
+++ b/INSTALL
@@ -2,7 +2,7 @@ Installation Instructions
*************************
Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006 Free Software Foundation, Inc.
+2006, 2007 Free Software Foundation, Inc.
This file is free documentation; the Free Software Foundation gives
unlimited permission to copy, distribute and modify it.
@@ -67,6 +67,9 @@ The simplest way to compile this package is:
all sorts of other programs in order to regenerate files that came
with the distribution.
+ 6. Often, you can also type `make uninstall' to remove the installed
+ files again.
+
Compilers and Options
=====================
diff --git a/autogen.sh b/autogen.sh
index 5401152..a3c930e 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -30,10 +30,10 @@ EOF
# substitute revision and linguas
linguas=`sed -e '/^#/d' po/LINGUAS`
if [ -d .git/svn ]; then
- revision=`git svn find-rev trunk ||
- git svn find-rev origin/trunk ||
- git svn find-rev HEAD ||
- git svn find-rev master`
+ revision=`git svn find-rev trunk 2>/dev/null ||
+ git svn find-rev origin/trunk 2>/dev/null ||
+ git svn find-rev HEAD 2>/dev/null ||
+ git svn find-rev master 2>/dev/null`
else
revision=`LC_ALL=C svn info $0 | awk '/^Revision: / {printf "%05d\n", $2}'`
fi