Skip to content

Commit

Permalink
Merge pull request vdr-projects#16 from kfb77/fork_master
Browse files Browse the repository at this point in the history
fix Makefile for coreutils >= 9.4
  • Loading branch information
tomjfr authored Jan 31, 2024
2 parents 7f2f23e + ae4fe22 commit e126422
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,11 @@ install-$(PLUGIN4): libvdr-$(PLUGIN4).so

install-conf:
mkdir -p $(DESTDIR)$(CONFDIR)/plugins/$(PLUGIN)/conf.d
cp -n conf/* $(DESTDIR)$(CONFDIR)/plugins/$(PLUGIN)
@for i in conf/*; do\
if ! [ -e $(DESTDIR)$(CONFDIR)/plugins/$$i ] ; then\
cp -p $$i $(DESTDIR)$(CONFDIR)/plugins/$(PLUGIN);\
fi\
done

install-doc: docs
mkdir -p $(DESTDIR)$(MANDIR)/man1
Expand Down

0 comments on commit e126422

Please sign in to comment.