Skip to content

Commit

Permalink
- fixed man page install location
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuch703 committed Feb 27, 2015
1 parent 4cdcfdb commit 772b050
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ ADD_CUSTOM_COMMAND(
${CMAKE_CURRENT_BINARY_DIR}/coordsCreateTiles.1
)

INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/coordsCreateStorage.1 DESTINATION ${CMAKE_INSTALL_PREFIX}/usr/share/man/man1)
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/coordsResolveLocations.1 DESTINATION ${CMAKE_INSTALL_PREFIX}/usr/share/man/man1)
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/coordsCreateTiles.1 DESTINATION ${CMAKE_INSTALL_PREFIX}/usr/share/man/man1)
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/coordsCreateStorage.1 DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man1)
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/coordsResolveLocations.1 DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man1)
INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/coordsCreateTiles.1 DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man1)

INSTALL (TARGETS coordsCreateStorage DESTINATION /usr/bin )
INSTALL (TARGETS coordsResolveLocations DESTINATION /usr/bin )
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please note: These tools are prototypes and not yet ready for production use. Us

Build Instructions (for Ubuntu 14.04)
----------------------------------------
* `sudo apt-get install make git build-essential libprotobuf-dev protobuf-compiler libexpat1-dev cmake` # install the required dependencies
* `sudo apt-get install make git build-essential libprotobuf-dev protobuf-compiler libexpat1-dev cmake ruby-ronn` # install the required dependencies
* `git clone https://github.com/rbuch703/coords.git` # clone the repository
* `cd coords`
* `cmake .`
Expand Down
2 changes: 1 addition & 1 deletion src/consumers/osmConsumerDumper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ OsmConsumerDumper::~OsmConsumerDumper()



/* modifies the 'tag' to reflect the rename rules.
/* modifies the 'tag' to reflect the 'ignore' rules.
* @Returns: whether the tag is to be kept (true) or discarded (false) */

bool OsmConsumerDumper::processTag(OSMKeyValuePair &tag) const
Expand Down
2 changes: 1 addition & 1 deletion src/consumers/osmConsumerDumper.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class OsmConsumerDumper: public OsmBaseConsumer
private:
mmap_t node_index, vertex_data, way_index, relation_index;
ChunkedFile *nodeData, *wayData, *relationData;
RadixTree<string> rename_key;
//RadixTree<string> rename_key;
RadixTree<int> ignore_key, ignoreKeyPrefixes; //ignore key-value pairs which are irrelevant for most applications
uint64_t nNodes, nWays, nRelations;

Expand Down

0 comments on commit 772b050

Please sign in to comment.