Description: Fix for wrong paths in web app
Author: Uwe Steinmann <uwe@steinmann.cx>

--- routino-2.1.1.orig/web/www/routino/paths.pl
+++ routino-2.1.1/web/www/routino/paths.pl
@@ -22,10 +22,10 @@
 # Directory path parameters
 
 # EDIT THIS to set the root directory for the non-web data files.
-$root_dir="../..";
+$root_dir="/var/lib/routino";
 
 # EDIT THIS to change the location of the individual directories.
-$bin_dir="$root_dir/bin";
+$bin_dir="/usr/bin";
 $data_dir="$root_dir/data";
 $results_dir="$root_dir/results";

@@ -30,14 +30,14 @@ $data_dir="$root_dir/data";
 $results_dir="$root_dir/results";
 
 # EDIT THIS to set the filename prefix for the routing database files.
 $data_prefix="";

 # EDIT THIS to change the names of the executables (enables easy selection of slim mode).
-$router_exe="router";
+$router_exe="routino-router";
 $filedumper_exe="filedumper";
 
 # EDIT THIS to change the search type and base URL (must be a type recognised by search.pl).
 $search_type="nominatim";
 $search_baseurl="http://nominatim.openstreetmap.org/search";

 1;
