AcademySoftwareFoundation / aswf-docker

Common container configuration
Apache License 2.0
148 stars 36 forks source link

Conan built DSOs don't preserve symlinks on installation #194

Closed jfpanisset closed 1 month ago

jfpanisset commented 6 months ago

Our Conan recipes don't preserve DSO symlinks when a package is installed.

    def deploy(self):
        self.copy("*")

should be:

    def deploy(self):
        self.copy("*", symlinks=True)
jfpanisset commented 1 month ago

Addressed in https://github.com/AcademySoftwareFoundation/aswf-docker/pull/199