diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-08-20 10:46:02 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-08-20 10:46:02 +0200 |
commit | a7c99052363e3738ebf8744f84b7a4b8b44f6d35 (patch) | |
tree | 304c6994a5b71a54337d2ee98d0d4e30dceb3fa4 /Makefile | |
parent | ef01c6d8bbce8aea091191c6073ab55ff2cd041e (diff) | |
download | vdr-a7c99052363e3738ebf8744f84b7a4b8b44f6d35.tar.gz vdr-a7c99052363e3738ebf8744f84b7a4b8b44f6d35.tar.bz2 |
Added --remove-destination to the 'cp' command for binaries in the Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Makefile 1.94 2006/06/02 14:45:33 kls Exp $ +# $Id: Makefile 1.95 2006/08/20 10:44:22 kls Exp $ .DELETE_ON_ERROR: @@ -201,7 +201,7 @@ install: install-bin install-conf install-doc install-plugins install-bin: vdr @mkdir -p $(BINDIR) - @cp vdr runvdr $(BINDIR) + @cp --remove-destination vdr runvdr $(BINDIR) # Configuration files: @@ -223,7 +223,7 @@ install-doc: install-plugins: plugins @mkdir -p $(PLUGINLIBDIR) - @cp $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION) $(PLUGINLIBDIR) + @cp --remove-destination $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION) $(PLUGINLIBDIR) # Source documentation: |