Today I came a cross an issue with a binary I created from some python scripts using pyinstaller. I created the binary on fc17 but when I tried to run it on fc18 I got an error which was related to a difference in the openssl version on fc17 (1.0.0k) and fc18 (1.0.1e). This raises serious doubts about my ability to use pyinstaller since I don't know in advance on which Linux distributions my binary will end up. I'm willing to build the binary once every time I make a change in the python scripts but I can not afford having every possible Linux distribution and building the binary on every one of them. Is there a recipe to handle the variety of Linux distributions when building an application with pyinstaller?Today I came a cross an issue with a binary I c