Browse Source

libseccomp: install missing header file

As of version 2.4.2, libseccomp ships a new header file
seccomp-syscalls.h. Install it in InstallDev.

Fixes: 71b663b335 ("libseccomp: update to version 2.4.2")
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Acked-by: Rosen Penev <rosenp@gmail.com>
lilik-openwrt-22.03
Stijn Tintel 5 years ago
parent
commit
c01462dcba
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libs/libseccomp/Makefile

+ 2
- 2
libs/libseccomp/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=libseccomp PKG_NAME:=libseccomp
PKG_VERSION:=2.4.2 PKG_VERSION:=2.4.2
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_USE_MIPS16:=0 PKG_USE_MIPS16:=0
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
@ -67,7 +67,7 @@ endef
define Build/InstallDev define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib/pkgconfig $(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib/pkgconfig
$(CP) \ $(CP) \
$(PKG_INSTALL_DIR)/usr/include/seccomp.h \
$(PKG_INSTALL_DIR)/usr/include/seccomp*.h \
$(1)/usr/include/ $(1)/usr/include/
$(CP) \ $(CP) \
$(PKG_INSTALL_DIR)/usr/lib/libseccomp.{a,so*} \ $(PKG_INSTALL_DIR)/usr/lib/libseccomp.{a,so*} \


Loading…
Cancel
Save