summaryrefslogtreecommitdiff
path: root/dev-ros/rospack/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-ros/rospack/files
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-ros/rospack/files')
-rw-r--r--dev-ros/rospack/files/gentoo.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/dev-ros/rospack/files/gentoo.patch b/dev-ros/rospack/files/gentoo.patch
deleted file mode 100644
index 7090d7b02dd7..000000000000
--- a/dev-ros/rospack/files/gentoo.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Index: rospack-2.3.1/src/rospack.cpp
-===================================================================
---- rospack-2.3.1.orig/src/rospack.cpp
-+++ rospack-2.3.1/src/rospack.cpp
-@@ -191,6 +191,13 @@ class Stackage
- break;
- }
- }
-+
-+ // On Gentoo we move package.xml to /usr/share/ros_packages/... but need to keep standard stuff in /usr/share, so correct this here.
-+ try {
-+ fs::path p = fs::canonical("../../" + name_, path_);
-+ path_ = p.string();
-+ }
-+ catch(fs::filesystem_error& e) {};
- }
-
- bool isStack() const