install -D not supported on mac

This commit is contained in:
2026-02-11 14:29:27 +01:00
parent 075cdbcdd2
commit 756fd64e00

View File

@@ -53,8 +53,8 @@ clean:
# Install the executable # Install the executable
install: $(TARGET) install: $(TARGET)
mkdir -p $(DESTDIR)$(PREFIX)/bin mkdir -p $(DESTDIR)$(PREFIX)/bin
install -s -D $(TARGET) $(BINDIR)/$(TARGET) install -s $(TARGET) $(BINDIR)/$(TARGET)
install -D $(TARGET).8 $(MANDIR)/man8/$(TARGET).8 install $(TARGET).8 $(MANDIR)/man8/$(TARGET).8
# Uninstall the executable # Uninstall the executable