I'm trying to build the same tarball you can download from the website, containing the following filetree:
$ ls -R ../../bitcoin-0.15.0/
../../bitcoin-0.15.0/:
bin include lib share
../../bitcoin-0.15.0/bin:
bitcoin-cli bitcoind bitcoin-qt bitcoin-tx test_bitcoin
../../bitcoin-0.15.0/include:
bitcoinconsensus.h
../../bitcoin-0.15.0/lib:
libbitcoinconsensus.so libbitcoinconsensus.so.0 libbitcoinconsensus.so.0.0.0
../../bitcoin-0.15.0/share:
man
../../bitcoin-0.15.0/share/man:
man1
../../bitcoin-0.15.0/share/man/man1:
bitcoin-cli.1 bitcoind.1 bitcoin-qt.1 bitcoin-tx.1
I'm using the 'prefix' configure to put the binaries into a specific folder
./configure --prefix=/home/ff/bitcoin-build
Now, the content I get inside the target directory is almost the same (there are some files more). However,when I try to copy and run it inside a container it gives me an error (which is not the case with the original tarball).
So, my question is: how do I build the sources in order to produce the same tarball you get from the website?