diff options
| author | Chen Qi <Qi.Chen@windriver.com> | 2022-06-12 01:00:04 -0700 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2022-06-20 12:09:51 -0400 |
| commit | 4e19bc7c96a9a5adbc72f5e454a75c4d8e498be4 (patch) | |
| tree | 78b20cf4278938bda973dbad77d39b861bd598b7 /recipes-containers/skopeo | |
| parent | fe1bd21891838d8dc4f7cf84a13581868251c125 (diff) | |
| download | meta-virtualization-4e19bc7c96a9a5adbc72f5e454a75c4d8e498be4.tar.gz | |
skopeo: clean up depends and fix CGO settings
According to https://github.com/containers/skopeo/blob/main/install.md#building-from-source,
the ostree dependency is not needed.
Also, adjust the CGO_CFLAGS and CGO_LDFALGS to use target
flags instead of the SDK ones.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-containers/skopeo')
| -rw-r--r-- | recipes-containers/skopeo/skopeo_git.bb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/recipes-containers/skopeo/skopeo_git.bb b/recipes-containers/skopeo/skopeo_git.bb index f3217dbf..35377a8d 100644 --- a/recipes-containers/skopeo/skopeo_git.bb +++ b/recipes-containers/skopeo/skopeo_git.bb | |||
| @@ -9,7 +9,6 @@ DEPENDS = " \ | |||
| 9 | lvm2 \ | 9 | lvm2 \ |
| 10 | btrfs-tools \ | 10 | btrfs-tools \ |
| 11 | glib-2.0 \ | 11 | glib-2.0 \ |
| 12 | ostree \ | ||
| 13 | " | 12 | " |
| 14 | 13 | ||
| 15 | inherit go | 14 | inherit go |
| @@ -61,8 +60,8 @@ do_compile() { | |||
| 61 | export CGO_ENABLED="1" | 60 | export CGO_ENABLED="1" |
| 62 | export CFLAGS="" | 61 | export CFLAGS="" |
| 63 | export LDFLAGS="" | 62 | export LDFLAGS="" |
| 64 | export CGO_CFLAGS="${BUILDSDK_CFLAGS} --sysroot=${STAGING_DIR_TARGET}" | 63 | export CGO_CFLAGS="${TARGET_CFLAGS}" |
| 65 | export CGO_LDFLAGS="${BUILDSDK_LDFLAGS} --sysroot=${STAGING_DIR_TARGET}" | 64 | export CGO_LDFLAGS="${TARGET_LDFLAGS}" |
| 66 | cd ${S}/src/import | 65 | cd ${S}/src/import |
| 67 | 66 | ||
| 68 | export GO111MODULE=off | 67 | export GO111MODULE=off |
