Hmmm, well, it *should*, so that's worrying that it's not doing so on your system. When you run `make binary-dist`, you the makefile should run a script called `fixup-libgfortran.sh`, which does exactly what you want. Here is an example log <http://buildbot.e.ip.saba.us:8010/builders/package_tarball64/builds/921/steps/make%20binary-dist/logs/stdio> of what it should look like when you run `make binary-dist`, the important part of which is:
./contrib/fixup-libgfortran.sh /home/centos/buildbot/slave/package_tarball64/build/julia-1e081b79ed/lib/julia `/home/centos/local/lib64/libgcc_s.so.1' -> `/home/centos/buildbot/slave/package_tarball64/build/julia-1e081b79ed/lib/julia/libgcc_s.so.1' `/home/centos/local/lib64/libgfortran.so.3' -> `/home/centos/buildbot/slave/package_tarball64/build/julia-1e081b79ed/lib/julia/libgfortran.so.3' `/home/centos/local/lib64/libquadmath.so.0' -> `/home/centos/buildbot/slave/package_tarball64/build/julia-1e081b79ed/lib/julia/libquadmath.so.0' Found traces of libgfortran/libgcc in /home/centos/local/lib64 ./contrib/fixup-libstdc++.sh /home/centos/buildbot/slave/package_tarball64/build/julia-1e081b79ed/lib/julia `/home/centos/local/lib64/libstdc++.so.6' -> `/home/centos/buildbot/slave/package_tarball64/build/julia-1e081b79ed/lib/julia/libstdc++.so.6' This is showing how it finds and installs libgfortran.so.3, you should see something similar in your installs as well. This should run as long as you're not running on windows <https://github.com/JuliaLang/julia/blob/master/Makefile#L401-L403>, so there must be some kind of error happening that is hopefully printed out to the console. -E
