Author: jannis
Date: 2008-08-30 20:38:23 +0000 (Sat, 30 Aug 2008)
New Revision: 27614

Modified:
   libexo/trunk/ChangeLog
   libexo/trunk/INSTALL
   libexo/trunk/autogen.sh
Log:
        * autogen.sh: Do not print errors when trying to detect the
          revision of a git svn repository.


Modified: libexo/trunk/ChangeLog
===================================================================
--- libexo/trunk/ChangeLog      2008-08-30 09:35:46 UTC (rev 27613)
+++ libexo/trunk/ChangeLog      2008-08-30 20:38:23 UTC (rev 27614)
@@ -1,3 +1,8 @@
+2008-08-30     Jannis Pohlmann <[EMAIL PROTECTED]>
+
+       * autogen.sh: Do not print errors when trying to detect the 
+         revision of a git svn repository.
+
 2008-08-25     Brian Tarricone <[EMAIL PROTECTED]>
 
        * exo-helper/exo-preferred-applications.desktop.in: Include

Modified: libexo/trunk/INSTALL
===================================================================
--- libexo/trunk/INSTALL        2008-08-30 09:35:46 UTC (rev 27613)
+++ libexo/trunk/INSTALL        2008-08-30 20:38:23 UTC (rev 27614)
@@ -2,7 +2,7 @@
 *************************
 
 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 @@
      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
 =====================
 

Modified: libexo/trunk/autogen.sh
===================================================================
--- libexo/trunk/autogen.sh     2008-08-30 09:35:46 UTC (rev 27613)
+++ libexo/trunk/autogen.sh     2008-08-30 20:38:23 UTC (rev 27614)
@@ -30,10 +30,10 @@
 # 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

_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits

Reply via email to