diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-09-26 09:30:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-26 09:30:03 +0200 |
commit | 17f3756884f2f65a1da753e5b58895dc0b9145e8 (patch) | |
tree | dbc917d81c13e6dff6c10e912b938257b50d199d | |
parent | 40e8bcb8482f2a1f60b93524ceda05770d20739e (diff) | |
parent | 8ff54cbe8cfe37744f773a6096e6f7413419bb6d (diff) | |
download | podman-17f3756884f2f65a1da753e5b58895dc0b9145e8.tar.gz podman-17f3756884f2f65a1da753e5b58895dc0b9145e8.tar.bz2 podman-17f3756884f2f65a1da753e5b58895dc0b9145e8.zip |
Merge pull request #15911 from yrro/fix-libsubid-detection
Fix libsubid detection
-rwxr-xr-x | hack/libsubid_tag.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hack/libsubid_tag.sh b/hack/libsubid_tag.sh index 31412b3e6..137826484 100755 --- a/hack/libsubid_tag.sh +++ b/hack/libsubid_tag.sh @@ -5,7 +5,7 @@ fi tmpdir="$PWD/tmp.$RANDOM" mkdir -p "$tmpdir" trap 'rm -fr "$tmpdir"' EXIT -cc -o "$tmpdir"/libsubid_tag -l subid -x c - > /dev/null 2> /dev/null << EOF +cc -o "$tmpdir"/libsubid_tag -x c - -l subid > /dev/null 2> /dev/null << EOF #include <shadow/subid.h> #include <stdio.h> #include <stdlib.h> |