From: antirez Date: Tue, 14 Feb 2012 15:15:20 +0000 (+0100) Subject: add -f flag to cp when installing, otherwise stopping the server is X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/120a36f22b338e6205a703424cd517e289d5217f?ds=sidebyside 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. --- diff --git a/src/Makefile b/src/Makefile index e023a2a9..cca785cb 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"