diff options
author | scop <scop@e10066b5-e1e2-0310-b819-94efdf66514b> | 2008-01-01 15:12:08 +0000 |
---|---|---|
committer | scop <scop@e10066b5-e1e2-0310-b819-94efdf66514b> | 2008-01-01 15:12:08 +0000 |
commit | 16e9a92cd4b6e3282070376e4087eca93cc79e06 (patch) | |
tree | d50d6954dacc120e948c402dfea4736702173078 | |
parent | 3b175b8af2d362ab5cd184e81847bddea3cc0ea3 (diff) | |
download | vdr-plugin-muggle-16e9a92cd4b6e3282070376e4087eca93cc79e06.tar.gz vdr-plugin-muggle-16e9a92cd4b6e3282070376e4087eca93cc79e06.tar.bz2 |
Don't hardcode /usr/local/bin.
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@985 e10066b5-e1e2-0310-b819-94efdf66514b
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -43,6 +43,7 @@ DVBDIR ?= ../../../../DVB VDRDIR ?= ../../../ LIBDIR ?= ../../lib TMPDIR ?= /tmp +BINDIR ?= /usr/local/bin ### Allow user defined options to overwrite defaults: @@ -167,7 +168,7 @@ mugglei: mg_tools.o mugglei.o mg_db.o $(DB_OBJ) mg_listitem.o mg_item.o mg_item_ install: @cp --remove-destination ../../lib/libvdr-muggle*.so.* /usr/lib/vdr/ - @cp mugglei /usr/local/bin/ + @cp mugglei $(BINDIR)/ # @install -m 755 mugglei /usr/local/bin/ dist: clean mg_tables.h |