Commit 01b302ab authored by antirez's avatar antirez
Browse files

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.
parent bad380bd
...@@ -56,7 +56,7 @@ CCOPT= $(CFLAGS) $(ARCH) $(PROF) ...@@ -56,7 +56,7 @@ CCOPT= $(CFLAGS) $(ARCH) $(PROF)
PREFIX= /usr/local PREFIX= /usr/local
INSTALL_BIN= $(PREFIX)/bin INSTALL_BIN= $(PREFIX)/bin
INSTALL= cp -p INSTALL= cp -pf
OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o vm.o pubsub.o multi.o debug.o sort.o intset.o syncio.o slowlog.o bio.o OBJ = adlist.o ae.o anet.o dict.o redis.o sds.o zmalloc.o lzf_c.o lzf_d.o pqsort.o zipmap.o sha1.o ziplist.o release.o networking.o util.o object.o db.o replication.o rdb.o t_string.o t_list.o t_set.o t_zset.o t_hash.o config.o aof.o vm.o pubsub.o multi.o debug.o sort.o intset.o syncio.o slowlog.o bio.o
BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o BENCHOBJ = ae.o anet.o redis-benchmark.o sds.o adlist.o zmalloc.o
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment