summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-23 17:28:42 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-23 20:53:10 +0100
commit793e0575b1cebb953276b5f93ff31e48c19779c8 (patch)
treec85a49a1fea6c5ef09b2ab0cacdfd1a93bb8667a /meta
parent31c13dc5bbdde0e6ba1510b684eba0aa2ff2c937 (diff)
downloadopenembedded-core-793e0575b1cebb953276b5f93ff31e48c19779c8.tar.gz
oeqa/selftest/incompatible_lib: Fix append usage
It's pure luck this has worked so far, add a missing space to the append. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oeqa/selftest/cases/incompatible_lic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/incompatible_lic.py b/meta/lib/oeqa/selftest/cases/incompatible_lic.py
index 3eabd79097..2a6382a1a8 100644
--- a/meta/lib/oeqa/selftest/cases/incompatible_lic.py
+++ b/meta/lib/oeqa/selftest/cases/incompatible_lic.py
@@ -85,7 +85,7 @@ class IncompatibleLicenseTests(OESelftestTestCase):
class IncompatibleLicensePerImageTests(OESelftestTestCase):
def default_config(self):
return """
-IMAGE_INSTALL_append = "bash"
+IMAGE_INSTALL_append = " bash"
INCOMPATIBLE_LICENSE_pn-core-image-minimal = "GPL-3.0 LGPL-3.0"
"""
OGIN-path OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/documentation/sdk-manual/sdk-manual-eclipse-customization.xsl
blob: 77ba5f57199748780c5f89ab91f3b6f4600c9dcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version='1.0'?>
<xsl:stylesheet
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns="http://www.w3.org/1999/xhtml"
	xmlns:fo="http://www.w3.org/1999/XSL/Format"
	version="1.0">

  <xsl:import href="http://downloads.yoctoproject.org/mirror/docbook-mirror/docbook-xsl-1.76.1/eclipse/eclipse3.xsl" />

<!--

  <xsl:import href="../template/1.76.1/docbook-xsl-1.76.1/eclipse/eclipse3.xsl" />

  <xsl:import
	  href="http://docbook.sourceforge.net/release/xsl/1.76.1/eclipse/eclipse3.xsl" />

-->

  <xsl:param name="chunker.output.indent" select="'yes'"/>
  <xsl:param name="chunk.quietly" select="1"/>
  <xsl:param name="chunk.first.sections" select="1"/>
  <xsl:param name="chunk.section.depth" select="10"/>
  <xsl:param name="use.id.as.filename" select="1"/>
  <xsl:param name="ulink.target" select="'_self'" />
  <xsl:param name="base.dir" select="'html/adt-manual/'"/>
  <xsl:param name="html.stylesheet" select="'../book.css'"/>
  <xsl:param name="eclipse.manifest" select="0"/>
  <xsl:param name="create.plugin.xml" select="0"/>
  <xsl:param name="suppress.navigation" select="1"/>
  <xsl:param name="generate.index" select="0"/>
  <xsl:param name="chapter.autolabel" select="1" />
  <xsl:param name="appendix.autolabel" select="1" />
  <xsl:param name="section.autolabel" select="1" />
  <xsl:param name="section.label.includes.component.label" select="1" />
</xsl:stylesheet>