From: <di...@us...> - 2007-05-29 04:30:36
|
Revision: 516 http://safekeep.svn.sourceforge.net/safekeep/?rev=516&view=rev Author: dimi Date: 2007-05-28 21:30:35 -0700 (Mon, 28 May 2007) Log Message: ----------- Do not complain if we can't figure out the SVN root Modified Paths: -------------- safekeep/trunk/Makefile Modified: safekeep/trunk/Makefile =================================================================== --- safekeep/trunk/Makefile 2007-05-29 04:24:07 UTC (rev 515) +++ safekeep/trunk/Makefile 2007-05-29 04:30:35 UTC (rev 516) @@ -10,7 +10,7 @@ tagname := $(shell echo Release-$(releasename) | tr . _) dirname := $(shell basename $(PWD)) rpmroot := $(shell grep '%_topdir' ~/.rpmmacros 2>/dev/null | sed 's/^[^ \t]*[ \t]*//') -svnroot := $(shell LANG=C svn info | grep Root | cut -c 18-) +svnroot := $(shell LANG=C svn info 2>/dev/null | grep Root | cut -c 18-) MAN_TXT := doc/safekeep.txt doc/safekeep.conf.txt doc/safekeep.backup.txt DOC_MAN := doc/safekeep.1 doc/safekeep.conf.5 doc/safekeep.backup.5 DOC_HTML := $(patsubst %.txt,%.html,$(MAN_TXT)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |