summaryrefslogtreecommitdiff
path: root/devel/ros-documentation/files/patch-3085
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2010-10-27 08:29:01 +0000
committerRene Ladan <rene@FreeBSD.org>2010-10-27 08:29:01 +0000
commitc292882c64a4d92b65fb053eb56c453be5d0e5c9 (patch)
tree0524acea8836e8ffac7b4b00793fa7a2f25bbe36 /devel/ros-documentation/files/patch-3085
parentAdd rc script to allow to flush queue on startup and shutdown (diff)
- Update to 1.2.4
- Remove patches integrated upstream Changelog: http://www.ros.org/wiki/ROS/ChangeList/1.2
Notes
Notes: svn path=/head/; revision=263645
Diffstat (limited to 'devel/ros-documentation/files/patch-3085')
-rw-r--r--devel/ros-documentation/files/patch-308524
1 files changed, 0 insertions, 24 deletions
diff --git a/devel/ros-documentation/files/patch-3085 b/devel/ros-documentation/files/patch-3085
deleted file mode 100644
index 6e12ca575fe3..000000000000
--- a/devel/ros-documentation/files/patch-3085
+++ /dev/null
@@ -1,24 +0,0 @@
-Index: core/roslib/src/roslib/packages.py
-===================================================================
---- core/roslib/src/roslib/packages.py (revision 11635)
-+++ core/roslib/src/roslib/packages.py (working copy)
-@@ -502,7 +502,8 @@
- if m in files:
- test_path = os.path.join(p, node_type)
- s = os.stat(test_path)
-- if (s.st_mode & stat.S_IRWXU == stat.S_IRWXU):
-+ if (s.st_mode & (stat.S_IRUSR | stat.S_IXUSR) ==
-+ (stat.S_IRUSR | stat.S_IXUSR)):
- return test_path
- if '.svn' in dirs:
- dirs.remove('.svn')
-@@ -514,7 +515,8 @@
- if node_type in files:
- test_path = os.path.join(p, node_type)
- s = os.stat(test_path)
-- if (s.st_mode & stat.S_IRWXU == stat.S_IRWXU):
-+ if (s.st_mode & (stat.S_IRUSR | stat.S_IXUSR) ==
-+ (stat.S_IRUSR | stat.S_IXUSR)):
- return test_path
- if '.svn' in dirs:
- dirs.remove('.svn')