diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-16 20:27:00 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-16 20:27:00 +0100 |
commit | dc56b3cd32d7d76946d162b63d3823ddf7cc470d (patch) | |
tree | 47bc045e5aaa6cc84d870d42b54b0826077d50fc | |
parent | 2bc05db54f22ae9d1e0c73a6b42518fdc8bec81e (diff) | |
download | rtmux-dc56b3cd32d7d76946d162b63d3823ddf7cc470d.tar.gz rtmux-dc56b3cd32d7d76946d162b63d3823ddf7cc470d.tar.bz2 rtmux-dc56b3cd32d7d76946d162b63d3823ddf7cc470d.zip |
No paths.h.
-rw-r--r-- | popup.c | 1 | ||||
-rw-r--r-- | tools/cmp-cvs.sh | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -19,7 +19,6 @@ #include <sys/types.h> #include <sys/wait.h> -#include <paths.h> #include <signal.h> #include <stdlib.h> #include <string.h> diff --git a/tools/cmp-cvs.sh b/tools/cmp-cvs.sh index b17d6f82..048ad15c 100644 --- a/tools/cmp-cvs.sh +++ b/tools/cmp-cvs.sh @@ -4,7 +4,7 @@ rm diff.out touch diff.out for i in *.[ch]; do - diff -u -I'\$OpenBSD' $i ../../OpenBSD/tmux/$i >diff.tmp + diff -u -I'\$OpenBSD' $i /usr/src/usr.bin/tmux/$i >diff.tmp set -- `wc -l diff.tmp` [ $1 -eq 8 ] && continue echo $i |