[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Hello, can you help me with this error message ? Thank you very much
From: |
Mike Gran |
Subject: |
Re: Hello, can you help me with this error message ? Thank you very much. Ray |
Date: |
Sun, 12 Oct 2014 17:58:50 +0000 (UTC) |
On Sunday, October 12, 2014 7:05 AM, Ray Eckert <address@hidden> wrote:
>address@hidden:~$ cd /usr/local/src/makemkv-bin-1.8.13
>address@hidden:/usr/local/src/makemkv-bin-1.8.13$ ls
>bin Makefile src
Note here that the only makefile you have in this directory
is named "Makefile"
>address@hidden:/usr/local/src/makemkv-bin-1.8.13$ sudo make -f
>Makefile.linux[sudo] password for ray: >make: Makefile.linux: No such file or
>directory
>make: *** No rule to make target `Makefile.linux'. Stop.
Here you're asking make to run on a makefile named
"Makefile.linux" which you don't have. Apparently the only makefile
you have in this directory is named "Makefile"
>address@hidden:/usr/local/src/makemkv-bin-1.8.13$ sudo make -f makefile.linux
>make: makefile.linux: No such file or directory
>make: *** No rule to make target `makefile.linux'. Stop.
Here you're asking make to run on a makefile named
"makefile.linux" which you don't have. Apparently the only makefile
you have in this directory is named "Makefile"
You should try just running "make" with no "-f makefile.linux"