[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Syntax error in library.make ?
From: |
Nicola Pero |
Subject: |
Re: Syntax error in library.make ? |
Date: |
Mon, 28 Jan 2002 10:42:18 +0000 (GMT) |
Thanks - good spot - it's my fault - forgot a right bracket - it seems
gregory has already fixed it on CVS
> As part of the new SOVERSION code in library.make line 157 reads:
>
> SOVERSION = $(word 1,$(SUBST ., ,$(VERSION))
>
> My gnumake kicks this out with an error as the brackets are unmatched. I
> am not entirely sure what is going on here, but I suspect this is supposed to
> be something like...
>
> SOVERSION = $(word 1,$(subst ., ,$(VERSION)))
>
> isnt it ? I'm not familiar with the innards of GNU make so I am not quite
> sure what the author intended here.