[Vim-latex-cvs] SF.net SVN: vim-latex:[1054] trunk/vimfiles/Makefile
Brought to you by:
srinathava,
tmaas
|
From: <tm...@us...> - 2009-08-03 22:06:25
|
Revision: 1054
http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1054&view=rev
Author: tmaas
Date: 2009-08-03 22:06:17 +0000 (Mon, 03 Aug 2009)
Log Message:
-----------
- Use /usr/local as default prefix
- Include revision in snapshot tarball name
Modified Paths:
--------------
trunk/vimfiles/Makefile
Modified: trunk/vimfiles/Makefile
===================================================================
--- trunk/vimfiles/Makefile 2009-08-03 21:53:14 UTC (rev 1053)
+++ trunk/vimfiles/Makefile 2009-08-03 22:06:17 UTC (rev 1054)
@@ -1,12 +1,13 @@
-PREFIX = /usr
+PREFIX = /usr/local
VIMDIR = $(PREFIX)/share/vim
BINDIR = $(PREFIX)/bin
VERSION=1.5
-
+REVISION=$(shell svn info 2>/dev/null| head -n 5 | tail -n 1 | cut -d" " -f2)
DATE = $(shell date +%Y%m%d)
-SNAPSHOTNAME = vim-latex-$(VERSION)-$(DATE)
+SNAPSHOTNAME = vim-latex-$(VERSION)-$(DATE)-r$(REVISION)
+
snapshot:
rm -rf -- ./$(SNAPSHOTNAME)
svn export . $(SNAPSHOTNAME)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|