aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2022-10-26 14:37:27 +0200
committerChristian Grothoff <grothoff@gnunet.org>2022-10-26 14:37:27 +0200
commita9ba5de546e1d30516f2e89ca70aae4b0a3114f5 (patch)
tree3d9c982f846e97a452e669255250782fd4141679 /bootstrap
parentd435321cfca9a667ec6fbc3bcf675142d58ab463 (diff)
downloadgnunet-a9ba5de546e1d30516f2e89ca70aae4b0a3114f5.tar.gz
gnunet-a9ba5de546e1d30516f2e89ca70aae4b0a3114f5.zip
-fix FTBFS issues
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap6
1 files changed, 6 insertions, 0 deletions
diff --git a/bootstrap b/bootstrap
index 16964eefe..c1ef83e01 100755
--- a/bootstrap
+++ b/bootstrap
@@ -128,21 +128,26 @@ gana_update()
128 cwd=$PWD 128 cwd=$PWD
129 cd contrib/gana || exit 1 129 cd contrib/gana || exit 1
130 # GNS 130 # GNS
131 echo "Updating GNS record types"
131 cd gnu-name-system-record-types && \ 132 cd gnu-name-system-record-types && \
132 make >/dev/null && \ 133 make >/dev/null && \
133 cp gnu_name_system_record_types.h ../../../src/include/ || exit 1 134 cp gnu_name_system_record_types.h ../../../src/include/ || exit 1
135 echo "Creating default TLDs"
134 cd ../gnu-name-system-default-tlds && \ 136 cd ../gnu-name-system-default-tlds && \
135 make >/dev/null && \ 137 make >/dev/null && \
136 cp tlds.conf ../../../src/gns || exit 1 138 cp tlds.conf ../../../src/gns || exit 1
137 139
138 # Signatures 140 # Signatures
141 echo "Updating GNUnet signatures"
139 cd ../gnunet-signatures && \ 142 cd ../gnunet-signatures && \
140 make >/dev/null && \ 143 make >/dev/null && \
141 cp gnunet_signatures.h ../../../src/include || exit 1 144 cp gnunet_signatures.h ../../../src/include || exit 1
142 # DHT Block Types 145 # DHT Block Types
146 echo "Updating DHT record types"
143 cd ../gnunet-dht-block-types && \ 147 cd ../gnunet-dht-block-types && \
144 make >/dev/null && \ 148 make >/dev/null && \
145 cp gnunet_dht_block_types.h ../../../src/include || exit 1 149 cp gnunet_dht_block_types.h ../../../src/include || exit 1
150 echo "Generating GNUnet error types"
146 cd ../gnunet-error-codes && \ 151 cd ../gnunet-error-codes && \
147 make >/dev/null && \ 152 make >/dev/null && \
148 cp gnunet_error_codes.h ../../../src/include && \ 153 cp gnunet_error_codes.h ../../../src/include && \
@@ -152,6 +157,7 @@ gana_update()
152 echo "ERROR: No recutils found! Unable to generate recent GANA headers and configs." 157 echo "ERROR: No recutils found! Unable to generate recent GANA headers and configs."
153 exit 1 158 exit 1
154 fi 159 fi
160 echo "GANA finished"
155} 161}
156 162
157main() 163main()