[nginx] svn commit: r4321 - trunk/misc
ru at nginx.com
ru at nginx.com
Wed Nov 30 07:36:10 UTC 2011
Author: ru
Date: 2011-11-30 07:36:09 +0000 (Wed, 30 Nov 2011)
New Revision: 4321
Log:
Compute the repository root from the checkout.
Modified:
trunk/misc/GNUmakefile
Modified: trunk/misc/GNUmakefile
===================================================================
--- trunk/misc/GNUmakefile 2011-11-29 17:27:13 UTC (rev 4320)
+++ trunk/misc/GNUmakefile 2011-11-30 07:36:09 UTC (rev 4321)
@@ -3,7 +3,7 @@
| sed -e 's/^.*\"\(.*\)\"/\1/')
NGINX = nginx-$(VER)
TEMP = tmp
-REPO = svn://svn.nginx.com
+REPO = $(shell svn info | sed -n 's/^Repository Root: //p')
OBJS = objs.msvc8
OPENSSL = openssl-1.0.0d
@@ -46,7 +46,7 @@
svn ci -F $(TEMP)/message
echo "release-$(VER) tag" > $(TEMP)/message
- svn copy $(REPO)/nginx/trunk $(REPO)/nginx/tags/release-$(VER) \
+ svn copy $(REPO)/trunk $(REPO)/tags/release-$(VER) \
-F $(TEMP)/message
svn up
More information about the nginx-devel
mailing list