bcallah 365ad58f60 Import sysutils/bfs, a breadth-first version of the UNIX find command.
ok solene@

bfs is a variant of the UNIX find command that operates breadth-first
rather than depth-first. It is otherwise intended to be compatible with
many versions of find, including:

* POSIX find
* GNU find
* {Free,Open,Net}BSD find
* macOS find
2018-09-26 14:37:51 +00:00

19 lines
547 B
Plaintext

$OpenBSD: patch-Makefile,v 1.1.1.1 2018/09/26 14:37:51 bcallah Exp $
Install manual page to the correct directory.
Index: Makefile
--- Makefile.orig
+++ Makefile
@@ -72,8 +72,8 @@ clean:
install:
$(MKDIR) $(DESTDIR)$(PREFIX)/bin
$(INSTALL) -m755 bfs $(DESTDIR)$(PREFIX)/bin/bfs
- $(MKDIR) $(DESTDIR)$(PREFIX)/share/man/man1
- $(INSTALL) -m644 bfs.1 $(DESTDIR)$(PREFIX)/share/man/man1/bfs.1
+ $(MKDIR) $(DESTDIR)$(PREFIX)/man/man1
+ $(INSTALL) -m644 bfs.1 $(DESTDIR)$(PREFIX)/man/man1/bfs.1
uninstall:
$(RM) $(DESTDIR)$(PREFIX)/bin/bfs