From 0cddd47ef6186a2822656b8ff5885782697a0a63 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sun, 21 Oct 2018 14:47:20 -0400 Subject: [PATCH] Makefile: Update clean. Make `find` commands openbsd compatible. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 84a92f0..0e4b2ca 100644 --- a/Makefile +++ b/Makefile @@ -30,8 +30,8 @@ install: clean: rm -rf dist Setup tags propellor propellor.1 privdata/local - find -name \*.o -exec rm {} \; - find -name \*.hi -exec rm {} \; + find . -name \*.o -exec rm {} \; + find . -name \*.hi -exec rm {} \; # hothasktags chokes on some template haskell etc, so ignore errors # duplicate tags with Propellor.Property. removed from the start, as we -- 2.19.1