From 41f8e9f268a8c40f82e53fd5c248c6ff7112be72 Mon Sep 17 00:00:00 2001 From: Dan Lorenc Date: Sun, 23 Jul 2023 08:38:42 -0400 Subject: [PATCH] Fix boost install step. Signed-off-by: Dan Lorenc --- boost.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/boost.yaml b/boost.yaml index 14c44c0ebdc..bbf08cecbf3 100644 --- a/boost.yaml +++ b/boost.yaml @@ -1,7 +1,7 @@ package: name: boost version: 1.82.0 - epoch: 1 + epoch: 2 description: "A library for interacting with the Linux kernel's Berkeley Packet Filter (BPF) facility from user space" copyright: - license: "BSL-1.0" @@ -95,9 +95,9 @@ pipeline: "${{targets.destdir}}"/usr/share/licenses/${{package.name}}/LICENSE_1_0.txt "${{targets.destdir}}"/usr/bin/b2 \ - --includedir="$[{targets.destdir}]"/usr/include \ - --libdir="${{targets.destdir}}"/usr/lib \ - install + --includedir="${{targets.destdir}}"/usr/include \ + --libdir="${{targets.destdir}}"/usr/lib \ + install - uses: strip