From eb3d93fd278d2b77fc4361f66eaa5d7a9314e8c7 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 14 Feb 2012 16:15:20 +0100 Subject: [PATCH] add -f flag to cp when installing, otherwise stopping the server is needed when installing a new Redis version. Thanks to Scott Kevill. Fixes issue #335. --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index e023a2a93..cca785cbc 100644 --- a/src/Makefile +++ b/src/Makefile @@ -59,7 +59,7 @@ CCOPT= $(CFLAGS) $(ARCH) $(PROF) PREFIX= /usr/local INSTALL_BIN= $(PREFIX)/bin -INSTALL= cp -p +INSTALL= cp -pf CCCOLOR="\033[34m" LINKCOLOR="\033[34;1m"