mirror of
https://git.sr.ht/~leon_plickat/wlopm
synced 2024-11-16 02:18:25 +01:00
Fix compatibility with FreeBSD coreutils
I needed to patch this to package wlopm for chimera linux, which uses FreeBSD's coreutils. Apparently -D is not portable, it means something different for FreeBSD install.
This commit is contained in:
parent
2e8d305b9e
commit
dffcf3d8fc
6
Makefile
6
Makefile
@ -21,8 +21,10 @@ $(OBJ): $(GEN)
|
|||||||
$(SCANNER) client-header < $< > $@
|
$(SCANNER) client-header < $< > $@
|
||||||
|
|
||||||
install: wlopm
|
install: wlopm
|
||||||
install -D wlopm $(DESTDIR)$(BINDIR)/wlopm
|
install -d $(DESTDIR)$(BINDIR)
|
||||||
install -m 644 -D wlopm.1 $(DESTDIR)$(MANDIR)/man1/wlopm.1
|
install wlopm $(DESTDIR)$(BINDIR)
|
||||||
|
install -d $(DESTDIR)$(MANDIR)/man1
|
||||||
|
install -m 644 wlopm.1 $(DESTDIR)$(MANDIR)/man1
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
$(RM) $(DESTDIR)$(BINDIR)/wlopm
|
$(RM) $(DESTDIR)$(BINDIR)/wlopm
|
||||||
|
Loading…
Reference in New Issue
Block a user