taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 170b436beefe96fd73c15ee49dc66a4e0e2e8a7c
parent 706558433267f1f35c60ee712da4773539882f9c
Author: Florian Dold <florian@dold.me>
Date:   Mon, 31 Jul 2023 10:48:14 +0200

updated gana scripts

Diffstat:
Mtaler-developer-manual.rst | 10++++------
1 file changed, 4 insertions(+), 6 deletions(-)

diff --git 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.)