Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
options: fix core-dynamic-linker on ppc64el/s390x #1600
Conversation
cjwatson
added some commits
Oct 10, 2017
kyrofa
approved these changes
Oct 10, 2017
Sorry about that @cjwatson, thanks for the fix!
| @@ -1626,6 +1626,7 @@ def test_config_stage_environment_confinement_classic(self): | ||
| 'snapcraft._options.ProjectOptions.get_core_dynamic_linker') | ||
| mock_core_dynamic_linker = patcher.start() | ||
| mock_core_dynamic_linker.return_value = dynamic_linker | ||
| + self.addCleanup(patcher.stop) |
sergiusens
added this to the 2.35 milestone
Oct 11, 2017
sergiusens
assigned
cjwatson
Oct 11, 2017
sergiusens
merged commit 1016c70
into
snapcore:master
Oct 11, 2017
1 check passed
continuous-integration/travis-ci/pr
The Travis CI build passed
Details
cjwatson
deleted the
cjwatson:fix-core-dl-paths
branch
Oct 11, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cjwatson commentedOct 10, 2017
ppc64el and s390x had leading slashes on their settings for
core-dynamic-linker. In some cases this caused snapcraft toincorrectly believe that the core snap was not installed, as the target
of the symlink on the host system couldn't be resolved within the core
snap.
LP: #1722521