[flashrom] [commit] r716 - trunk

svn at flashrom.org svn at flashrom.org
Sat Sep 5 03:12:07 CEST 2009


Author: hailfinger
Date: 2009-09-05 03:12:07 +0200 (Sat, 05 Sep 2009)
New Revision: 716

Modified:
   trunk/Makefile
Log:
Not all systems have svnversion installed. Fall back to svn info if
svnversion fails.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006 at gmx.net>
Acked-by: Uwe Hermann <uwe at hermann-uwe.de>


Modified: trunk/Makefile
===================================================================
--- trunk/Makefile	2009-09-05 01:10:23 UTC (rev 715)
+++ trunk/Makefile	2009-09-05 01:12:07 UTC (rev 716)
@@ -58,7 +58,7 @@
 # of the checked out flashrom files.
 # Note to packagers: Any tree exported with "make export" or "make tarball"
 # will not require subversion. The downloadable snapshots are already exported.
-SVNVERSION := $(shell LC_ALL=C svnversion -cn . | sed -e "s/.*://" -e "s/\([0-9]*\).*/\1/" | grep "[0-9]" || echo unknown)
+SVNVERSION := $(shell LC_ALL=C svnversion -cn . | sed -e "s/.*://" -e "s/\([0-9]*\).*/\1/" | grep "[0-9]" || LC_ALL=C svn info . | grep ^Revision | sed "s/.*[[:blank:]]\+\([0-9]*\)[^0-9]*/\1/" | grep "[0-9]" || echo unknown)
 
 RELEASE := 0.9.1
 VERSION := $(RELEASE)-r$(SVNVERSION)





More information about the flashrom mailing list