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.
This commit is contained in:
Stefan Kalkowski 2012-01-17 22:22:43 +01:00 committed by Norman Feske
parent 50b5a0d36d
commit 05b0927302
1 changed files with 1 additions and 1 deletions

View File

@ -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)/'"