diff options
author | 2020-03-29 10:36:50 +0200 | |
---|---|---|
committer | 2020-04-09 09:11:44 +0200 | |
commit | 8fd5c96339d7664204901fe2144fd9e33ef5b9ae (patch) | |
tree | 8e6f075c29a11b285f18be4d02f9e8e3d3d4899a | |
parent | 4b099d6461575237569cc96eba7c3185bca68ab5 (diff) | |
download | buildroot-8fd5c96339d7664204901fe2144fd9e33ef5b9ae.tar.gz buildroot-8fd5c96339d7664204901fe2144fd9e33ef5b9ae.tar.bz2 |
package/hiredis: install alloc.h
This will fix build of collectd, proftpd ... with latest hiredis
Fixes:
- http://autobuild.buildroot.org/results/f5afe60defd63461a5fc06b26bd4759fb5f56a8f
- http://autobuild.buildroot.org/results/45e980c85d170827d3a41e7443cf1088b2d59ead
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit b72be8c48b7c110f5e63e741599ceca1d0352fbc)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/hiredis/hiredis.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/hiredis/hiredis.mk b/package/hiredis/hiredis.mk index 02055b05d4..230fb2d187 100644 --- a/package/hiredis/hiredis.mk +++ b/package/hiredis/hiredis.mk @@ -55,7 +55,7 @@ endif define HIREDIS_INSTALL_STAGING_CMDS mkdir -p $(HIREDIS_INCLUDE_DIR) cp -dpfr $(@D)/hiredis.h $(@D)/async.h $(@D)/read.h $(@D)/sds.h \ - $(@D)/adapters $(HIREDIS_INCLUDE_DIR) + $(@D)/alloc.h $(@D)/adapters $(HIREDIS_INCLUDE_DIR) $(INSTALL) -D -m 0644 $(@D)/hiredis.pc \ $(STAGING_DIR)/usr/lib/pkgconfig/hiredis.pc $(HIREDIS_INSTALL_STAGING_STATIC_LIB) |