[Vim-latex-cvs] SF.net SVN: vim-latex:[1060] trunk/vimfiles/Makefile
Brought to you by:
srinathava,
tmaas
|
From: <tm...@us...> - 2009-08-12 21:41:00
|
Revision: 1060
http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1060&view=rev
Author: tmaas
Date: 2009-08-12 21:40:49 +0000 (Wed, 12 Aug 2009)
Log Message:
-----------
Create snapshots from HEAD and not WORKING.
Modified Paths:
--------------
trunk/vimfiles/Makefile
Modified: trunk/vimfiles/Makefile
===================================================================
--- trunk/vimfiles/Makefile 2009-08-12 21:38:05 UTC (rev 1059)
+++ trunk/vimfiles/Makefile 2009-08-12 21:40:49 UTC (rev 1060)
@@ -3,14 +3,14 @@
BINDIR = $(PREFIX)/bin
VERSION=1.5
-REVISION=$(shell svn info 2>/dev/null| head -n 5 | tail -n 1 | cut -d" " -f2)
+REVISION=$(shell svn info -r HEAD 2>/dev/null| head -n 5 | tail -n 1 | cut -d" " -f2)
DATE = $(shell date +%Y%m%d)
SNAPSHOTNAME = vim-latex-$(VERSION)-$(DATE)-r$(REVISION)
snapshot:
rm -rf -- ./$(SNAPSHOTNAME)
- svn export . $(SNAPSHOTNAME)
+ svn export -r HEAD . $(SNAPSHOTNAME)
make -C $(SNAPSHOTNAME)/doc
tar cvzf ./$(SNAPSHOTNAME).tar.gz ./$(SNAPSHOTNAME)
rm -rf -- ./$(SNAPSHOTNAME)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|