diff --git a/include/sdf/config.hh.in b/include/sdf/config.hh.in index d1b3db532..f5ccc12d8 100644 --- a/include/sdf/config.hh.in +++ b/include/sdf/config.hh.in @@ -47,7 +47,4 @@ #cmakedefine SDFORMAT_DISABLE_CONSOLE_LOGFILE 1 -#define SDF_SHARE_PATH "${CMAKE_INSTALL_FULL_DATAROOTDIR}/" -#define SDF_VERSION_PATH "${CMAKE_INSTALL_FULL_DATAROOTDIR}/sdformat${SDF_MAJOR_VERSION}/${SDF_PKG_VERSION}" - #endif // #ifndef SDF_CONFIG_HH_ diff --git a/src/SDF.cc b/src/SDF.cc index 07056d792..f1fe98b62 100644 --- a/src/SDF.cc +++ b/src/SDF.cc @@ -108,22 +108,6 @@ std::string findFile(const std::string &_filename, bool _searchLocalPath, } } - // Next check the install path. - std::string path = sdf::filesystem::append(SDF_SHARE_PATH, filename); - if (sdf::filesystem::exists(path)) - { - return path; - } - - // Next check the versioned install path. - path = sdf::filesystem::append(SDF_SHARE_PATH, - "sdformat" SDF_MAJOR_VERSION_STR, - sdf::SDF::Version(), filename); - if (sdf::filesystem::exists(path)) - { - return path; - } - // Finally check to see if the given file exists. path = filename; if (sdf::filesystem::exists(path))