[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: make failing, tabs are fine, missing separator
From: |
Dave Korn |
Subject: |
RE: make failing, tabs are fine, missing separator |
Date: |
Wed, 9 Jan 2008 14:23:50 -0000 |
On 09 January 2008 02:31, Russell King wrote:
> Trying to do make on the app is failing. Tabs for make files are good. I
> am getting the following errors:
>
> Makefile:23: *** missing separator. Stop.
>
> This happens right after the line:
>
> all:
>
> (cd src;$(MAKE))
>
> in ./Makefile.
You left a blank line between the target and the rules. That acts as a
separator, so make doesn't know your command line is part of the rule; it
thinks it's an entirely new top-level structure, and issues its generic
i-can't-parse-this error message. Delete the blank line and you should be ok.
cheers,
DaveK
--
Can't think of a witty .sigline today....
- make failing, tabs are fine, missing separator, Russell King, 2008/01/08
- RE: make failing, tabs are fine, missing separator,
Dave Korn <=
- Re: make failing, tabs are fine, missing separator, Russell King, 2008/01/09
- RE: make failing, tabs are fine, missing separator, Dave Korn, 2008/01/09
- Re: make failing, tabs are fine, missing separator, Russell King, 2008/01/09
- Re: make failing, tabs are fine, missing separator, Philip Guenther, 2008/01/09
- Re: make failing, tabs are fine, missing separator, Russell King, 2008/01/09
- Re: make failing, tabs are fine, missing separator, Philip Guenther, 2008/01/09
- Re: make failing, tabs are fine, missing separator, Russell King, 2008/01/09
- Re: make failing, tabs are fine, missing separator, Philip Guenther, 2008/01/09
- Re: make failing, tabs are fine, missing separator, Paul Smith, 2008/01/10
- RE: make failing, tabs are fine, missing separator, Dave Korn, 2008/01/10