diff options
author | Raoul Hidalgo Charman <raoul.hidalgocharman@codethink.co.uk> | 2018-11-22 17:27:20 +0000 |
---|---|---|
committer | Raoul Hidalgo Charman <raoul.hidalgocharman@codethink.co.uk> | 2018-12-05 10:44:02 +0000 |
commit | 9f75c274a56855c4c6dd625c2d4216d82febde75 (patch) | |
tree | 6237c037779217e4b664a4ba7381170d672dce42 /doc | |
parent | 1ad35fcd1bbb4a89e177da44303cf95e5a3b659d (diff) | |
download | buildstream-9f75c274a56855c4c6dd625c2d4216d82febde75.tar.gz |
optionarch.py: update to use same arch names as SandboxConfig
Also update tests to be consistent with this
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/flatpak-autotools/elements/base/sdk.bst | 4 | ||||
-rw-r--r-- | doc/examples/flatpak-autotools/project.conf | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/examples/flatpak-autotools/elements/base/sdk.bst b/doc/examples/flatpak-autotools/elements/base/sdk.bst index a1b6c5856..97089b83b 100644 --- a/doc/examples/flatpak-autotools/elements/base/sdk.bst +++ b/doc/examples/flatpak-autotools/elements/base/sdk.bst @@ -5,10 +5,10 @@ sources: url: gnomesdk:repo/ gpg-key: keys/gnome-sdk.gpg (?): - - arch == "x86_64": + - arch == "x86-64": track: runtime/org.freedesktop.BaseSdk/x86_64/1.4 ref: 0d9d255d56b08aeaaffb1c820eef85266eb730cb5667e50681185ccf5cd7c882 - - arch == "i386": + - arch == "x86-32": track: runtime/org.freedesktop.BaseSdk/i386/1.4 ref: 16036b747c1ec8e7fe291f5b1f667cb942f0267d08fcad962e9b7627d6cf1981 config: diff --git a/doc/examples/flatpak-autotools/project.conf b/doc/examples/flatpak-autotools/project.conf index 0296b22f6..401dc561a 100644 --- a/doc/examples/flatpak-autotools/project.conf +++ b/doc/examples/flatpak-autotools/project.conf @@ -10,6 +10,6 @@ options: type: arch description: The machine architecture values: - - x86_64 - - i386 + - x86-64 + - x86-32 |