diff options
author | Alexis Ballier <aballier@gentoo.org> | 2018-06-08 13:16:53 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2018-06-08 14:26:27 +0200 |
commit | 25cf3201c31249fcb4b2641e6df087aae1632bcd (patch) | |
tree | 8093c2e28c077e20b57828a6dee5a5e12d976eeb /sci-electronics/gazebo/files | |
parent | media-gfx/povray: find boost from prefix (diff) | |
download | gentoo-25cf3201c31249fcb4b2641e6df087aae1632bcd.tar.gz gentoo-25cf3201c31249fcb4b2641e6df087aae1632bcd.tar.bz2 gentoo-25cf3201c31249fcb4b2641e6df087aae1632bcd.zip |
sci-electronics/gazebo: Remove old
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'sci-electronics/gazebo/files')
-rw-r--r-- | sci-electronics/gazebo/files/tinyxml6.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/sci-electronics/gazebo/files/tinyxml6.patch b/sci-electronics/gazebo/files/tinyxml6.patch deleted file mode 100644 index 16a3862fc78f..000000000000 --- a/sci-electronics/gazebo/files/tinyxml6.patch +++ /dev/null @@ -1,20 +0,0 @@ -Index: gazebo-8.2.0/gazebo/util/LogPlay.cc -=================================================================== ---- gazebo-8.2.0.orig/gazebo/util/LogPlay.cc -+++ gazebo-8.2.0/gazebo/util/LogPlay.cc -@@ -125,12 +125,9 @@ void LogPlay::Open(const std::string &_l - { - gzerr << "Unable to load file[" << _logFile << "]. " - << "Check the Gazebo server log file for more information.\n"; -- const char *errorStr1 = this->dataPtr->xmlDoc.GetErrorStr1(); -- const char *errorStr2 = this->dataPtr->xmlDoc.GetErrorStr2(); -- if (errorStr1) -- gzlog << "Log Error 1:\n" << errorStr1 << std::endl; -- if (errorStr2) -- gzlog << "Log Error 2:\n" << errorStr2 << std::endl; -+ const char *errorStr = this->dataPtr->xmlDoc.ErrorStr(); -+ if (errorStr) -+ gzlog << "Log Error:\n" << errorStr << std::endl; - gzthrow("Error parsing log file"); - } - |