On Tue, 2016-09-13 at 23:24 +0200, orsobianco9 wrote: > the make program reports the following error. > 'This program was compiled for i686-pc-linux-gnu > Report bugs to <[email protected]> '
In general it's better to run your test case that you want to send to the mailing list with LANG=C as most GNU make developers use English as their primary language. In any event: > ~/java$ make -jpkg jdk-8u102-linux-i586-tar.gz This is not a valid command line for GNU make. The -j option for GNU make takes either no argument, or else a numeric argument (number of parallel jobs to run). Here you've given it an argument of "pkg" (-jpkg) which is illegal, and so you're getting an error. You can see that from the error message that's printed. _______________________________________________ Bug-make mailing list [email protected] https://lists.gnu.org/mailman/listinfo/bug-make
