From 5629b0a6d6c0a60a77b4e6c10366fee44ab575ba Mon Sep 17 00:00:00 2001 From: Matthias Cramer Date: Wed, 11 Feb 2026 14:29:27 +0100 Subject: [PATCH] install -D not supported on mac --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0d08cfc..357d434 100644 --- a/Makefile +++ b/Makefile @@ -53,8 +53,8 @@ clean: # Install the executable install: $(TARGET) mkdir -p $(DESTDIR)$(PREFIX)/bin - install -s -D $(TARGET) $(BINDIR)/$(TARGET) - install -D $(TARGET).8 $(MANDIR)/man8/$(TARGET).8 + install -s $(TARGET) $(BINDIR)/$(TARGET) + install $(TARGET).8 $(MANDIR)/man8/$(TARGET).8 # Uninstall the executable