mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
23 lines
691 B
Diff
23 lines
691 B
Diff
diff --git a/Makefile b/Makefile
|
|
index 65a7674..1a5976e 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -31,7 +31,7 @@ TMPDIR = /tmp
|
|
|
|
### The version number of VDR (taken from VDR's "config.h"):
|
|
|
|
-VDRVERSION = $(shell grep 'define VDRVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g')
|
|
+APIVERSION = $(shell grep 'define APIVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g')
|
|
|
|
### The name of the distribution archive:
|
|
|
|
@@ -54,7 +54,7 @@ all: libvdr-$(PLUGIN).so
|
|
|
|
libvdr-$(PLUGIN).so: $(OBJS)
|
|
$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
|
|
- @cp $@ $(LIBDIR)/$@.$(VDRVERSION)
|
|
+ @cp $@ $(LIBDIR)/$@.$(APIVERSION)
|
|
|
|
dist: clean
|
|
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|