aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap9
1 files changed, 8 insertions, 1 deletions
diff --git a/bootstrap b/bootstrap
index c1ef83e01..d452be168 100755
--- a/bootstrap
+++ b/bootstrap
@@ -123,15 +123,22 @@ sphinx_update()
123 123
124gana_update() 124gana_update()
125{ 125{
126 if [ ! -z $GNUNET_SKIP_GANA ]; then
127 echo "Skipping GANA update"
128 return
129 fi
126 echo "Updating GANA..." 130 echo "Updating GANA..."
127 if existence recfmt; then 131 if existence recfmt; then
128 cwd=$PWD 132 cwd=$PWD
129 cd contrib/gana || exit 1 133 cd contrib/gana || exit 1
130 # GNS 134 # GNS
131 echo "Updating GNS record types" 135 echo "Updating GNS record types/flags"
132 cd gnu-name-system-record-types && \ 136 cd gnu-name-system-record-types && \
133 make >/dev/null && \ 137 make >/dev/null && \
134 cp gnu_name_system_record_types.h ../../../src/include/ || exit 1 138 cp gnu_name_system_record_types.h ../../../src/include/ || exit 1
139 cd ../gnu-name-system-record-flags && \
140 make >/dev/null && \
141 cp gnu_name_system_record_flags.h ../../../src/include/ || exit 1
135 echo "Creating default TLDs" 142 echo "Creating default TLDs"
136 cd ../gnu-name-system-default-tlds && \ 143 cd ../gnu-name-system-default-tlds && \
137 make >/dev/null && \ 144 make >/dev/null && \