On 16/9/2010 11:22, Ruben Van Boxem wrote:
> What's wrong, you ask? the echo line
>
>> echo "configuring libiconv: "$CONFIG_OPTS
>>
> prints the right thing, but the line below it with the actual configure
> command, messes it up for some reason, and the subsequent "make" call has
> this form:
Try
On Thu, Sep 16, 2010 at 11:28 AM, Ruben Van Boxem
wrote:
> 2010/9/16 Ozkan Sezer
>>
>> Well, you are using quotes between quotes without escaping them:
>> CONFIG_OPTS="--prefix="$PREFIX" ..
>> should it not read:
>> CONFIG_OPTS="--prefix=\"$PREFIX\" ..
>> This kind
2010/9/16 Ozkan Sezer
>
> Well, you are using quotes between quotes without escaping them:
> CONFIG_OPTS="--prefix="$PREFIX" ..
> should it not read:
> CONFIG_OPTS="--prefix=\"$PREFIX\" ..
> This kind of stuff I would have looked first. (... and remove the
> trail
On Thu, Sep 16, 2010 at 5:22 PM, Ruben Van Boxem
wrote:
> Hi,
>
> I have created a build script from my GCC building experience... I knwo this
> isn't the fix my BASH script list, but still.
>
> The problem lies (I think) in
>
> 1) my extremely limited BASH knowledge
> 2) the quotes in the CFLAGS=
Hi,
I have created a build script from my GCC building experience... I knwo this
isn't the fix my BASH script list, but still.
The problem lies (I think) in
1) my extremely limited BASH knowledge
2) the quotes in the CFLAGS="..." part
What's wrong, you ask? the echo line
> echo "configuring li