From d051f669184f5f7b82365404a8943b0bbc22123a Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Thu, 3 Jul 2008 21:41:23 +0000 Subject: [PATCH] guessing current svn url was broken (we dont use that with nightlies) --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4ddedc80..72e1230c 100644 --- a/Makefile +++ b/Makefile @@ -136,7 +136,8 @@ include $(PLDISTROTAGS) # so now the nightly build script sets this to what it is currently using # we set a default in case we run the build manually: # if the local directory was svn checked out, then use the corresponding URL -default-build-SVNPATH := $(shell svn info 2> /dev/null | grep URL: | awk '{print $2;}') +svn-info-url-line := $(shell svn info 2> /dev/null | grep URL:) +default-build-SVNPATH := $(lastword $(svn-info-url-line)) # otherwise, use this hard-coded default ifeq "$(default-build-SVNPATH)" "" default-build-SVNPATH := http://svn.planet-lab.org/svn/build/trunk -- 2.47.0