From: Faiyaz Ahmed Date: Tue, 14 Aug 2007 16:16:39 +0000 (+0000) Subject: make ln paths relative instead of absolute. URL check was failing in PlanetLabConf. X-Git-Tag: 4.2-rc2~602 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=591615373d74603ddc0de30f8dd10940f1064214;p=build.git make ln paths relative instead of absolute. URL check was failing in PlanetLabConf. --- diff --git a/planetlab.mk b/planetlab.mk index dbf421d6..6eb8ff11 100644 --- a/planetlab.mk +++ b/planetlab.mk @@ -4,7 +4,7 @@ # Mark Huang # Copyright (C) 2003-2006 The Trustees of Princeton University # -# $Id: planetlab.mk,v 1.62 2007/07/27 20:08:34 dhozac Exp $ +# $Id: planetlab.mk,v 1.63 2007/07/31 14:15:30 dhozac Exp $ # # @@ -413,11 +413,11 @@ endif ifeq ($(TAG),HEAD) # Update nightly alpha symlink if it does not exist or is broken, or it is Monday if ! ssh $(SERVERA) "[ -e $(REPOS) ] && exit 0 || exit 1" || [ "$(shell date +%A)" = "Monday" ] ; then \ - ssh $(SERVERA) ln -nsf $(ARCHIVE)/$(BASE) $(REPOS) ; \ + ssh $(SERVERA) ln -nsf archive/$(BASE) $(REPOS) ; \ fi # Update nightly alpha symlink if it does not exist or is broken, or it is Monday if ! ssh $(SERVERB) "[ -e $(REPOS) ] && exit 0 || exit 1" || [ "$(shell date +%A)" = "Monday" ] ; then \ - ssh $(SERVERB) ln -nsf $(ARCHIVE)/$(BASE) $(REPOS) ; \ + ssh $(SERVERB) ln -nsf archive/$(BASE) $(REPOS) ; \ fi endif