From 6ced596b1339acac04ab5de88be34a2563232ad7 Mon Sep 17 00:00:00 2001 From: TomBraun Date: Thu, 26 Jun 2014 14:59:54 +0200 Subject: [PATCH] Chang "git submodule update --init" with "clone --recursive" --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 252f3c349..6952de5f6 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,8 @@ Eressea depends on a number of external libraries. On a recent Debian-based Linu This repository relies heavily on the use of submodules, and it pulls in most of the code from those. The build system being used is cmake, which can create Makefiles on Unix, or Visual Studio project files on Windows. Here's how you clone and build the source on Ubuntu: - git clone git://github.com/eressea/server.git + git clone --recursive git://github.com/eressea/server.git cd server - git submodule update --init ./configure -If you got this far and all went well, you have built a server (it is linked from the `game` subdirectory), and it will have passed some basic functionality tests. \ No newline at end of file +If you got this far and all went well, you have built a server (it is linked from the `game` subdirectory), and it will have passed some basic functionality tests.