diff options
-rw-r--r-- | CONTRIBUTORS | 3 | ||||
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | Makefile | 4 |
3 files changed, 7 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 814441bf..841d4a1e 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -2965,3 +2965,6 @@ Sören Moch <smoch@web.de> for a patch that was used to move cleaning up the EPG data and writing the epg.data file into a separate thread to avoid sluggish response to user input on slow systems for fixing sorting folders before recordings in case of UTF-8 + +Peter Münster <pmlists@free.fr> + for fixing 'make install' to not overwrite existing configuration files @@ -7290,3 +7290,5 @@ Video Disk Recorder Revision History Removed the meanwhile obsolete definition of FE_CAN_TURBO_FEC. - Fixed some compiler warnings under gcc version 4.7.1. - Fixed setting the video format in the dvbhdffdevice (thanks to Torsten Lang). +- Fixed 'make install' to not overwrite existing configuration files (thanks to Peter + Münster). @@ -4,7 +4,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: Makefile 2.29 2012/09/09 09:29:15 kls Exp $ +# $Id: Makefile 2.30 2012/10/09 08:32:25 kls Exp $ .DELETE_ON_ERROR: @@ -211,7 +211,7 @@ install-dirs: @mkdir -p $(DESTDIR)$(RESDIRDEF) install-conf: - @cp *.conf $(DESTDIR)$(CONFDIRDEF) + @cp -n *.conf $(DESTDIR)$(CONFDIRDEF) # Documentation: |