From 05b09273026836aa17e01fffb50a56f5fd82fef7 Mon Sep 17 00:00:00 2001 From: Stefan Kalkowski Date: Tue, 17 Jan 2012 22:22:43 +0100 Subject: [PATCH] Fix subversion usage of 'make prepare' in base-foc It turns out that recent subversion clients are more nitpicking with respect to the usage of 'svn update'. Formerly it was ok to just checkout a toplevel directory of some repository, and then update that parts in the repo that are needed. This is used in the preparation makefile in 'base-foc' to just checkout a small part of the L4Re software stack. Recent clients complain about using update with some remote target, so we've to use 'checkout' here too. This commit fixes #84. --- base-foc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-foc/Makefile b/base-foc/Makefile index 24bdd778c..447dc4775 100644 --- a/base-foc/Makefile +++ b/base-foc/Makefile @@ -84,7 +84,7 @@ update_contrib_subdirs: $(addprefix $(REAL_CONTRIB_DIR)/,$(SVN_TARGETS)) # for resolving the dependencies of 'update_contrib_subdirs' $(REAL_CONTRIB_DIR)/%: - $(VERBOSE)svn up -r $(SVN_REV) $(SVN_URI)/$* $@ + $(VERBOSE)svn co -r $(SVN_REV) $(SVN_URI)/$* $@ apply_patches: $(ECHO) "applying patches to '$(REAL_CONTRIB_DIR)/'"