summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authors@aa9ff9ce06b08acfd2a93ebd342ce6879430fbdd2018-10-21 19:19:28 +0000
committeradmin2018-10-21 19:19:28 +0000
commit5e6a3b5ce192f2aa23624631f70eef4185bdf42b (patch)
tree042912c60352abcfd881abe81580b70cc0e35de5
parent8327a7931b3face9e2f9ffef61008c2893337e5c (diff)
New forum post about an issue with `Make clean` in openbsd.
-rw-r--r--doc/forum/Make_clean_fails_in_openbsd.mdwn25
1 files changed, 25 insertions, 0 deletions
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