From 89de9a2fb4b5350a6ffb679dbeb6ac4e9b523227 Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Wed, 19 Nov 2008 14:01:19 +0000 Subject: "SilentBob" is a tool to help a programmer/team manager to digest and comprehend either a simple program or a big source code tree based on the source code by presenting the code in a searcheable and tagged way. It helps to speed up the learning curve and to make it more convenient to get hands on a code from somebody, or also is convenient to browse your own projects. It includes functionality from such tools as: ctags, cscope and ctree, but it is faster than any of them, and is offering the features in one package. In some way it can be viewed as a superset of ctags, cscope and ctree. WWW: http://silentbob.sourceforge.net/ PR: 128969 Submitted by: TAKATSU Tomonari --- devel/silentbob/files/patch-Sblib.cxx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 devel/silentbob/files/patch-Sblib.cxx (limited to 'devel/silentbob/files/patch-Sblib.cxx') diff --git a/devel/silentbob/files/patch-Sblib.cxx b/devel/silentbob/files/patch-Sblib.cxx new file mode 100644 index 000000000000..0a6b8ff38158 --- /dev/null +++ b/devel/silentbob/files/patch-Sblib.cxx @@ -0,0 +1,11 @@ +--- sblib/Sblib.cxx.orig 2008-09-18 12:45:29.000000000 +0900 ++++ sblib/Sblib.cxx 2008-11-13 15:53:16.000000000 +0900 +@@ -346,7 +346,7 @@ + lseek (fd, 0, SEEK_END); + dup2 (devnull, 2); + dup2 (fd, 1); +- execlp ("find", path, "-name", name, NULL); ++ execlp ("find", "find", path, "-name", name, NULL); + } else if (pid > 0) { + waitpid (pid, &status, 0); + return status; -- cgit v1.2.3