-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On 2011-10-11 19:17, kubro bubro wrote:
i do make with -j 4 argument to have faster result with my 4core
[...]
but every time it ends with: make[2]: Entering directory `/home/kubriel/Downloads/Gem-0.93.0/extra' make[2]: Nothing to be done for `all-am'. make[2]: Leaving directory `/home/kubriel/Downloads/Gem-0.93.0/extra' make[1]: Leaving directory `/home/kubriel/Downloads/Gem-0.93.0/extra' make[1]: Entering directory `/home/kubriel/Downloads/Gem-0.93.0' make[1]: Nothing to be done for `all-am'. make[1]: Leaving directory `/home/kubriel/Downloads/Gem-0.93.0' make: *** [all-recursive] Error 1
using "-j4" is nice to speed up things, but it makes finding errors harder. in order to get reasonable information at a reasonable speed, run a non-parallelized make right after the failed build with "-j4".
something like $ make -j4 $ make
then you should be able to give us information where it actually failed.
the same error with make install. i have to add -I /usr/include/ImageMagick to find image magick headers shouldnt make install just copy compiled stuff to prefix directory?
it will do so, if the build has succeeded. if the build is not complete yet, it will first try to finish it. since your build stopped with an error, it did not complete yet.
fgasdr IOhannes