diff options
author | Ricardo Martincoski <ricardo.martincoski@gmail.com> | 2017-04-04 19:50:14 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-04-06 22:41:45 +0200 |
commit | 4ef04c476c79c7efe05b8befc35eb20997fcaaa4 (patch) | |
tree | 5da9b82e2a6f4d06476e7524c5cf35b4a86ae58a /package/redis | |
parent | 250f27ac422ee67c40189666b6fd4c50dd41dd74 (diff) | |
download | buildroot-4ef04c476c79c7efe05b8befc35eb20997fcaaa4.tar.gz buildroot-4ef04c476c79c7efe05b8befc35eb20997fcaaa4.zip |
package: remove trailing backslash
Occurrences were searched using [1]:
check-package --include-only TrailingBackslash $(find * -type f)
and manually removed.
[1] http://patchwork.ozlabs.org/patch/729669/
Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/redis')
-rw-r--r-- | package/redis/redis.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/redis/redis.mk b/package/redis/redis.mk index 679862093b..3f4956cf34 100644 --- a/package/redis/redis.mk +++ b/package/redis/redis.mk @@ -23,7 +23,7 @@ endif # instead. REDIS_BUILDOPTS = $(TARGET_CONFIGURE_OPTS) \ LDFLAGS="$(TARGET_LDFLAGS) $(REDIS_LIBATOMIC)" \ - PREFIX=$(TARGET_DIR)/usr MALLOC=libc \ + PREFIX=$(TARGET_DIR)/usr MALLOC=libc define REDIS_BUILD_CMDS $(TARGET_MAKE_ENV) $(MAKE) $(REDIS_BUILDOPTS) -C $(@D) |