summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--taler-developer-manual.rst10
1 files changed, 4 insertions, 6 deletions
diff --git a/taler-developer-manual.rst b/taler-developer-manual.rst
index 2c4c1c37..b8858c0e 100644
--- a/taler-developer-manual.rst
+++ b/taler-developer-manual.rst
@@ -275,10 +275,9 @@ One common submodule is ``contrib/gana``, which pulls from the
`GNUnet GANA repository <https://git.gnunet.org/gana.git/>`__.
For example, in the
`Taler exchange repository <https://git.taler.net/exchange.git>`__,
-the bootstrap script eventually runs the ``git submodule update`` command
-early on, and later runs script ``./contrib/gana.sh``, which in turn
-runs script ``./contrib/gana-update.sh``, which performs various tasks,
-such as generating the file ``src/include/taler_signatures.h``.
+the bootstrap script eventually runs the ``git submodule update --init`` command
+early on, and later runs script ``./contrib/gana-generate.sh``, which
+generates files such as ``src/include/taler_signatures.h``.
Thus, to update that file, you need to:
@@ -290,8 +289,7 @@ Thus, to update that file, you need to:
- Commit the change, and push it to the GANA Git repo.
-- (in Taler Repo) Change directory to ``contrib/gana`` and run
- command ``git pull`` there.
+- (in Taler Repo) Run the ``contrib/gana-latest.sh`` script.
- Bootstrap, configure, do ``make install``, ``make check``, etc.
(Basically, make sure the change does not break anything.)