From 5e6a3b5ce192f2aa23624631f70eef4185bdf42b Mon Sep 17 00:00:00 2001 From: s@aa9ff9ce06b08acfd2a93ebd342ce6879430fbdd Date: Sun, 21 Oct 2018 19:19:28 +0000 Subject: New forum post about an issue with `Make clean` in openbsd. --- doc/forum/Make_clean_fails_in_openbsd.mdwn | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 doc/forum/Make_clean_fails_in_openbsd.mdwn (limited to 'doc/forum/Make_clean_fails_in_openbsd.mdwn') diff --git a/doc/forum/Make_clean_fails_in_openbsd.mdwn b/doc/forum/Make_clean_fails_in_openbsd.mdwn new file mode 100644 index 00000000..0f73586a --- /dev/null +++ b/doc/forum/Make_clean_fails_in_openbsd.mdwn @@ -0,0 +1,25 @@ +openbsd requires specifying the path for the [`find`][0] command. So this: + + find -name \*.o + find: unknown option -- n + usage: find [-dHhLXx] [-f path] path ... [expression] + + +fails. + +This works: + + + find . -name \*.o + ./dist/build/Utility/Applicative.o + ./dist/build/Utility/PosixFiles.o + ./dist/build/Utility/Split.o + ... + + +as expected. + +Here's a patch for it: [0001-Makefile-Update-clean.patch][1]. + +[0]: https://man.openbsd.org/find +[1]: https://ricketyspace.net/patch/0001-Makefile-Update-clean.patch -- cgit v1.2.3