]> git.saurik.com Git - redis.git/commitdiff
add -f flag to cp when installing, otherwise stopping the server is
authorantirez <antirez@gmail.com>
Tue, 14 Feb 2012 15:15:20 +0000 (16:15 +0100)
committerantirez <antirez@gmail.com>
Tue, 14 Feb 2012 15:15:24 +0000 (16:15 +0100)
needed when installing a new Redis version. Thanks to Scott Kevill.
Fixes issue #335.

src/Makefile

index e023a2a93cf4ca557d398e6266f199879bf4ab32..cca785cbc2f238401e05738362e571e888a98c05 100644 (file)
@@ -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"