mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +00:00
fdbb0e334f
* and make it skipped only when meta-filesystem is missing as well * depends on libdnet from meta-networking and nothing in meta-oe depends on open-vm-tools * update packagegroup-meta-oe to match this, without either of these layers packagegroup-meta-oe is currently failing with: ERROR: Nothing RPROVIDES 'open-vm-tools' (but meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb RDEPENDS on or otherwise requires it) open-vm-tools was skipped: Requires meta-networking and meta-filesystems to be present. NOTE: Runtime target 'open-vm-tools' is unbuildable, removing... Missing or unbuildable dependency chain was: ['open-vm-tools'] ERROR: Required build target 'packagegroup-meta-oe' has no buildable providers. Missing or unbuildable dependency chain was: ['packagegroup-meta-oe', 'open-vm-tools'] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
25 lines
652 B
Diff
25 lines
652 B
Diff
From cf1284fda8fb22a2b27cb2ce7962f166166e74c3 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Wed, 13 Jun 2018 23:48:04 -0700
|
|
Subject: [PATCH] Fix subdir objects configure error
|
|
|
|
Fix build on musl while here
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
---
|
|
open-vm-tools/configure.ac | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac
|
|
index 71e684bb..b76a7966 100644
|
|
--- a/open-vm-tools/configure.ac
|
|
+++ b/open-vm-tools/configure.ac
|
|
@@ -303,6 +303,7 @@ AC_ARG_ENABLE(
|
|
[],
|
|
[enable_resolutionkms="auto"])
|
|
|
|
+AM_INIT_AUTOMAKE([subdir-objects])
|
|
AM_INIT_AUTOMAKE
|
|
|
|
###
|