]> git.openstreetmap.org Git - chef.git/commitdiff
nominatim: disable luajit
authorSarah Hoffmann <lonvia@denofr.de>
Mon, 19 Feb 2024 09:35:43 +0000 (10:35 +0100)
committerSarah Hoffmann <lonvia@denofr.de>
Mon, 19 Feb 2024 09:35:43 +0000 (10:35 +0100)
Something is potentially buggy with luajit and causes data loss.

cookbooks/nominatim/recipes/default.rb
cookbooks/nominatim/templates/default/nominatim-update-source.erb

index 4b96e544d8a1b9f980ea08f2fcef45ca44b0c1d9..bf0db0aecd9a26067f04b96af04dcbb34871f42c 100644 (file)
@@ -292,7 +292,7 @@ execute "compile_nominatim" do
   action :nothing
   user "nominatim"
   cwd build_directory
-  command "cmake -D WITH_LUAJIT=ON #{source_directory} && make"
+  command "cmake #{source_directory} && make"
   notifies :run, "execute[install_nominatim]"
 end
 
index fb51d1eea1745daa557400c661bfd4dd41e26a20..dacb6190ee132cbd8c61bdb88f2a94c69102debd 100644 (file)
@@ -20,5 +20,5 @@ git checkout --detach <%= node[:nominatim][:revision] %>
 git submodule update
 
 cd <%= @builddir %>
-cmake -D WITH_LUAJIT=ON .
+cmake .
 make