Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2017-12-05 04:24:54 +0300
committerGitHub <noreply@github.com>2017-12-05 04:24:54 +0300
commit922308212fff1fe0b6cedfebee7121fc8d317a49 (patch)
tree86b71a33d01dab260fdfd4bc5ca54b155160884a /pkg/Microsoft.NETCore.Platforms/runtime.json
parentdefb6d52047cc3d6b5f5d0853b0afdb1512dfbf4 (diff)
Fix Alpine Linux dependency chain (#25685)
* Fix Alpine Linux dependency chain The alpine Linux has incorrect parent set to "any" instead of "unix". This change fixes that. * Added runtime.json files generated by the build
Diffstat (limited to 'pkg/Microsoft.NETCore.Platforms/runtime.json')
-rw-r--r--pkg/Microsoft.NETCore.Platforms/runtime.json10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkg/Microsoft.NETCore.Platforms/runtime.json b/pkg/Microsoft.NETCore.Platforms/runtime.json
index 8e16fcdd96..7346469800 100644
--- a/pkg/Microsoft.NETCore.Platforms/runtime.json
+++ b/pkg/Microsoft.NETCore.Platforms/runtime.json
@@ -2,24 +2,26 @@
"runtimes": {
"alpine": {
"#import": [
- "any"
+ "unix"
]
},
"alpine-corert": {
"#import": [
"alpine",
- "corert"
+ "unix-corert"
]
},
"alpine-x64": {
"#import": [
- "alpine"
+ "alpine",
+ "unix-x64"
]
},
"alpine-x64-corert": {
"#import": [
"alpine-corert",
- "alpine-x64"
+ "alpine-x64",
+ "unix-x64-corert"
]
},
"alpine.3.6": {