summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-06-28 16:03:38 +0100
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-06-28 18:47:17 +0100
commit414516fbbc8e961ea6336597bfa8fc3d528fb327 (patch)
tree52e41b2a9a39ba16248248ab406bda4dda643b3e /README
parent0029fee3e447d576cbcde8025fbba91eddc31892 (diff)
downloadmorph-414516fbbc8e961ea6336597bfa8fc3d528fb327.tar.gz
Fix README to document mandatory build dependencies
Fix example stratum morphology as well.
Diffstat (limited to 'README')
-rw-r--r--README7
1 files changed, 4 insertions, 3 deletions
diff --git a/README b/README
index 82d7d3cb..06409919 100644
--- a/README
+++ b/README
@@ -119,7 +119,7 @@ For strata, use the following fields:
chunk name), `ref` identifies the commit to use (typically a branch
name, but any tree-ish git accepts is ok), and `morph` is the name
of the morphology to use and is optional. In addition to these keys,
- each of the sources may specify a list of build dependencies using the
+ each of the sources MUST specify a list of build dependencies using the
`build-depends` field. This field may be omitted to make the source
depend on all other chunks that are listed earlier in the `sources`
list. The field may be an empty list to indicate that the chunk does
@@ -161,13 +161,14 @@ Example stratum:
"sources": [
{
"name": "fhs-dirs",
- "ref": "baserock/bootstrap"
+ "ref": "baserock/bootstrap",
+ "build-depends": [],
},
{
"name": "linux-api-headers",
"repo": "linux",
"ref": "baserock/morph",
- "build-depends": []
+ "build-depends": ["fhs-dirs"]
},
{
"name": "eglibc",