|
From: <fcr...@us...> - 2013-01-19 11:42:03
|
Revision: 845
http://safekeep.svn.sourceforge.net/safekeep/?rev=845&view=rev
Author: fcrawford
Date: 2013-01-19 11:05:36 +0000 (Sat, 19 Jan 2013)
Log Message:
-----------
Fixup for some minor variations in SVN 1.7
Modified Paths:
--------------
safekeep/trunk/Makefile
Modified: safekeep/trunk/Makefile
===================================================================
--- safekeep/trunk/Makefile 2013-01-19 11:00:57 UTC (rev 844)
+++ safekeep/trunk/Makefile 2013-01-19 11:05:36 UTC (rev 845)
@@ -10,7 +10,7 @@
tagname := $(shell echo Release-$(releasename) | tr . _)
dirname := $(shell basename $(PWD))
rpmroot := $(shell grep '^%_topdir' ~/.rpmmacros 2>/dev/null | sed -e 's/^[^ \t]*[ \t]*//' -e 's/%/$$/g')
-svnroot := $(shell LANG=C svn info 2>/dev/null | grep Root | cut -c 18-)
+svnroot := $(shell LANG=C svn info 2>/dev/null | grep 'Root:' | cut -d: -f 2-)
deb_box := 192.168.3.202
rpm_box := 192.168.3.242
SF_USER := $(shell whoami)
@@ -95,7 +95,7 @@
$(DOC_HTML) $(DOC_MAN): doc/asciidoc.conf
changelog:
- svn log -v --xml | svn2log.py -D 0 -u doc/users
+ svn log -v --xml -r HEAD:1 | svn2log.py -D 0 -u doc/users
install:
install -d -m 755 "$(DESTDIR)/usr/bin/"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|