Skip to content

Commit

Permalink
fix install js files
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Ehrnsperger committed Mar 7, 2021
1 parent 8ebc61d commit 8a59919
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(s
LIBDIR = $(call PKGCFG,libdir)
LOCDIR = $(call PKGCFG,locdir)
PLGCFG = $(call PKGCFG,plgcfg)
RESDIR = $(call PKGCFG,resdir)
#
TMPDIR ?= /tmp

Expand Down Expand Up @@ -231,8 +232,14 @@ $(SOINST): $(SOFILE)
.PHONY: install-lib
install-lib: lib recursive-soinst

.PHONY: install-web
install-web:
@mkdir -p $(DESTDIR)$(RESDIR)/plugins/$(PLUGIN)
@cp -a live/* $(DESTDIR)$(RESDIR)/plugins/$(PLUGIN)/


.PHONY: install
install: install-lib install-i18n
install: install-lib install-i18n install-web

.PHONY: dist
dist: $(I18Npo)
Expand Down

0 comments on commit 8a59919

Please sign in to comment.