Skip to content

Commit 110bdb0

Browse files
authored
Merge pull request opencontainers#3200 from kolyshkin/release-fix-for-opensuse
script/release.sh: fix for opensuse
2 parents a244d57 + 39d0ee1 commit 110bdb0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

script/release.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ function build_project() {
3838
tar xf "$tarball"
3939
(
4040
cd "libseccomp-${libseccomp_ver}"
41-
./configure --prefix="$prefix" --enable-static --disable-shared
41+
./configure --prefix="$prefix" --libdir="$prefix/lib" \
42+
--enable-static --disable-shared
4243
make install
4344
)
4445
mv "$tarball"{,.asc} "$builddir"

0 commit comments

Comments
 (0)