summaryrefslogtreecommitdiff
path: root/navit/tools
diff options
context:
space:
mode:
authorkazer_ <kazer_@ffa7fe5e-494d-0410-b361-a75ebd5db220>2010-04-15 09:30:45 +0000
committerkazer_ <kazer_@ffa7fe5e-494d-0410-b361-a75ebd5db220>2010-04-15 09:30:45 +0000
commit3d12395becefe3a38c9dd55b794ca02270099569 (patch)
treeba684b73338d24c2bc7744cd74af907d3a056536 /navit/tools
parentb64139742425543a881455882a2bc25525c5ddd0 (diff)
downloadnavit-3d12395becefe3a38c9dd55b794ca02270099569.tar.gz
Fix:Ticket #566, osm2navit not renamed to maptool everywhere
git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@3176 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'navit/tools')
-rwxr-xr-xnavit/tools/asc2navit6
1 files changed, 3 insertions, 3 deletions
diff --git a/navit/tools/asc2navit b/navit/tools/asc2navit
index dadef0108..77ba4ad15 100755
--- a/navit/tools/asc2navit
+++ b/navit/tools/asc2navit
@@ -47,7 +47,7 @@ close $pipe;
sub show_help {
print "parses one (or multiple) .asc-file(s) (mainly used by poiwarner) and\n";
- print "merges the result into one navit binary mapfile. requires osm2navit (when -x is not set)\n";
+ print "merges the result into one navit binary mapfile. requires maptool (when -x is not set)\n";
print "usage: $0 [OPTION] OUT in1.asc [in2.asc [...]]\n";
print " creates one big file called onebigfile\n";
print "usage: $0 [OPTION] IN.asc\n";
@@ -68,9 +68,9 @@ sub preprocess_filelist {
}
sub open_outputhandle() {
- # open the pipe to osm2navit...
+ # open the pipe to maptool...
if (!$write_osm) {
- open $pipe, "| osm2navit $filename" or die $!;
+ open $pipe, "| maptool $filename" or die $!;
} else {
# or a filehandle
open $pipe, ">$filename" or die $!;