Author: hailfinger Date: 2009-05-04 14:18:10 +0200 (Mon, 04 May 2009) New Revision: 454
Modified: trunk/Makefile trunk/flashrom.c Log: flashrom 0.9.0
Signed-off-by: Carl-Daniel Hailfinger c-d.hailfinger.devel.2006@gmx.net Acked-by: Peter Stuge peter@stuge.se
Modified: trunk/Makefile =================================================================== --- trunk/Makefile 2009-05-03 23:33:05 UTC (rev 453) +++ trunk/Makefile 2009-05-04 12:18:10 UTC (rev 454) @@ -38,10 +38,8 @@
all: pciutils dep $(PROGRAM)
-# Set the flashrom version string from the highest revision number -# of the checked out flashrom files. -SVNDEF := -D'FLASHROM_VERSION="$(shell svnversion -cn . \ - | sed -e "s/.*://" -e "s/([0-9]*).*/\1/")"' +# Set the flashrom version string +SVNDEF := -D'FLASHROM_VERSION="0.9.0"'
$(PROGRAM): $(OBJS) $(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
Modified: trunk/flashrom.c =================================================================== --- trunk/flashrom.c 2009-05-03 23:33:05 UTC (rev 453) +++ trunk/flashrom.c 2009-05-04 12:18:10 UTC (rev 454) @@ -326,7 +326,7 @@
void print_version(void) { - printf("flashrom r%s\n", FLASHROM_VERSION); + printf("flashrom v%s\n", FLASHROM_VERSION); }
int main(int argc, char *argv[])