mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
89de9a2fb4
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 <tota at rtfm dot jp>
12 lines
379 B
C++
12 lines
379 B
C++
--- 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;
|