You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Martin Kraemer <Ma...@mch.sni.de> on 1998/06/08 16:01:57 UTC

[BUG] 1.3.0: Makefile problem in src/modules/example

When using Ralf's binbuild.sh script, I get the following error in
the sec/modules/example/ subdirectory:

    make: Fatal error: line 58: Syntax error.

That is because of the fact that in this line there's an empty target
    $(LIB): $(OBJS)
where
    OBJS=
    LIB=

Why is the example directory visited in the first place?

BTW: GNU make doesn't seem to bother, but SVR4 make does.

    Martin
-- 
| S I E M E N S |  <Ma...@mch.sni.de>  |      Siemens Nixdorf
| ------------- |   Voice: +49-89-636-46021     |  Informationssysteme AG
| N I X D O R F |   FAX:   +49-89-636-44994     |   81730 Munich, Germany
~~~~~~~~~~~~~~~~My opinions only, of course; pgp key available on request

Re: [BUG] 1.3.0: Makefile problem in src/modules/example

Posted by Dean Gaudet <dg...@arctic.org>.

On Mon, 8 Jun 1998, Martin Kraemer wrote:

> When using Ralf's binbuild.sh script, I get the following error in
> the sec/modules/example/ subdirectory:
> 
>     make: Fatal error: line 58: Syntax error.
> 
> That is because of the fact that in this line there's an empty target
>     $(LIB): $(OBJS)

change it to:

svr4makeisdifferent $(LIB): $(OBJS)

Dean

> where
>     OBJS=
>     LIB=
> 
> Why is the example directory visited in the first place?
> 
> BTW: GNU make doesn't seem to bother, but SVR4 make does.
> 
>     Martin
> -- 
> | S I E M E N S |  <Ma...@mch.sni.de>  |      Siemens Nixdorf
> | ------------- |   Voice: +49-89-636-46021     |  Informationssysteme AG
> | N I X D O R F |   FAX:   +49-89-636-44994     |   81730 Munich, Germany
> ~~~~~~~~~~~~~~~~My opinions only, of course; pgp key available on request
>