diff options
author | Remi Collet <fedora@famillecollet.com> | 2016-09-09 17:25:56 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2016-09-09 17:25:56 +0200 |
commit | 997c62ec7d0a673f13da8f36462a17c1ed737f37 (patch) | |
tree | feb5b4387fd0bccf3f02d025eb557f4f1d8fd8d1 /redis-pr3494.patch | |
parent | 874d705cf4e35d01fdc7eed51b21d8cfa23659bd (diff) |
redis: add patch for symlink
Diffstat (limited to 'redis-pr3494.patch')
-rw-r--r-- | redis-pr3494.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/redis-pr3494.patch b/redis-pr3494.patch new file mode 100644 index 0000000..f8494a2 --- /dev/null +++ b/redis-pr3494.patch @@ -0,0 +1,19 @@ +From 0786e630734f5522f1b6ba62ab4ad759c8002ebd Mon Sep 17 00:00:00 2001 +From: Remi Collet <fedora@famillecollet.com> +Date: Fri, 9 Sep 2016 17:23:27 +0200 +Subject: [PATCH] install redis-check-rdb as a symlink instead of duplicating + the binary + +--- + src/Makefile | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/Makefile b/src/Makefile +index 6bd8d8d..0661c58 100644 +--- a/src/Makefile ++++ b/src/Makefile +@@ -272,3 +272,4 @@ install: all + $(REDIS_INSTALL) $(REDIS_CHECK_RDB_NAME) $(INSTALL_BIN) + $(REDIS_INSTALL) $(REDIS_CHECK_AOF_NAME) $(INSTALL_BIN) + @ln -sf $(REDIS_SERVER_NAME) $(INSTALL_BIN)/$(REDIS_SENTINEL_NAME) ++ @ln -sf $(REDIS_SERVER_NAME) $(INSTALL_BIN)/$(REDIS_CHECK_RDB_NAME) |