2

just tried to compile the R-language from sources but my make aborted with

m -f liblzma.a
make[4]: m: Command not found

I eagerly searched the web but it seams it's impossible to find the command line tool that has only one letter.. maybe I just lost my searching abilities :/

Maybe someone can give me a hint on that.

EDIT: System: SLES 11.4

Thanks!

5
  • 1
    You could do grep -r "\<m -f" . in the source directory. I'll guess, this is a typo and someone intended to write rm instead of m. Commented Mar 18, 2016 at 15:33
  • 1
    What distribution? And why are you not using your distribution's binary packages? Commented Mar 18, 2016 at 16:41
  • 5
    Seems to be a known bug that was fixed already: bugs.r-project.org/bugzilla/show_bug.cgi?id=16755
    – hellcode
    Commented Mar 18, 2016 at 16:44
  • to add to @FaheemMitha 's comment, see software.opensuse.org/package/R-base and cran.r-project.org/bin/linux/suse/README.html - it's rarely a good idea to compile your own binaries when a package exists for your distro.
    – cas
    Commented Mar 18, 2016 at 23:33
  • 4
    I'm voting to close this question as off-topic because this was due to an upstream bug that has since been fixed.
    – Jeff Schaller
    Commented Oct 27, 2016 at 14:45

0

Browse other questions tagged .