~leon_plickat/public-inbox

lswt: Makefile: Fix compatibility with FreeBSD coreutils v1 PROPOSED

Hugo Machet: 1
 Makefile: Fix compatibility with FreeBSD coreutils

 1 files changed, 6 insertions(+), 3 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~leon_plickat/public-inbox/patches/49446/mbox | git am -3
Learn more about email & git

[PATCH lswt] Makefile: Fix compatibility with FreeBSD coreutils Export this patch

---
 Makefile | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile
index ff4ae11b11ec..879a7e39f149 100644
--- a/Makefile
+++ b/Makefile
@@ -22,9 +22,12 @@ $(OBJ): $(GEN)
	$(SCANNER) client-header < $< > $@

install: lswt
	install        -D lswt            $(DESTDIR)$(BINDIR)/lswt
	install -m 644 -D lswt.1          $(DESTDIR)$(MANDIR)/man1/lswt.1
	install        -D bash-completion $(DESTDIR)$(BASHCOMPDIR)/lswt
	install -d                     $(DESTDIR)$(BINDIR)
	install        lswt            $(DESTDIR)$(BINDIR)
	install -d                     $(DESTDIR)$(MANDIR)/man1
	install -m 644 lswt.1          $(DESTDIR)$(MANDIR)/man1
	install -d                     $(DESTDIR)$(BASHCOMPDIR)
	install        bash-completion $(DESTDIR)$(BASHCOMPDIR)/lswt

uninstall:
	$(RM) $(DESTDIR)$(BINDIR)/lswt

base-commit: 502d9ceb49ebad47eb4ea10009242797fb2ec6a1
-- 
2.43.1
Thanks!