X-MimeOLE: Produced By Microsoft Exchange V6.5
Received: by onstor-exch02.onstor.net 
	id <01C7DB90.E685113A@onstor-exch02.onstor.net>; Fri, 10 Aug 2007 12:56:19 -0800
MIME-Version: 1.0
Content-Type: text/plain;
	charset="us-ascii"
Content-Transfer-Encoding: quoted-printable
Content-class: urn:content-classes:message
Subject: RE: Kernel build issue
Date: Fri, 10 Aug 2007 12:56:19 -0800
Message-ID: <BB375AF679D4A34E9CA8DFA650E2B04E02215977@onstor-exch02.onstor.net>
In-Reply-To: <20070810134721.28775a08@ripper.onstor.net>
X-MS-Has-Attach: 
X-MS-TNEF-Correlator: 
Thread-Topic: Kernel build issue
Thread-Index: Acfbj6ZbF4RXlI9jR0egCENX8rjbKAAALL1Q
From: "Larry Scheer" <larry.scheer@onstor.com>
To: "Andy Sharp" <andy.sharp@onstor.com>,
	"Maxim Kozlovsky" <maxim.kozlovsky@onstor.com>
Cc: "dl-Cougar" <dl-Cougar@onstor.com>

The which conv sets CONV to a space or empty string which nullifies the
?=3Dbelow.

You need something like
ifeq ($(strip ${CONV}),)
  CONV :=3D whatever
endif
After the $(shell which conv)

-----Original Message-----
From: Andy Sharp=20
Sent: Friday, August 10, 2007 1:47 PM
To: Maxim Kozlovsky
Cc: Larry Scheer; dl-Cougar
Subject: Re: Kernel build issue

On Fri, 10 Aug 2007 13:40:20 -0700 "Maxim Kozlovsky"
<maxim.kozlovsky@onstor.com> wrote:

> >> On Fri, 10 Aug 2007 13:25:31 -0700 "Larry Scheer"
> >> <larry.scheer@onstor.com> wrote:
> >>
> >> My bad.  I think I inadvertently blew this away when I checked in
> some
> >> changes a couple of days ago.
> >
> >Actually, that should have worked, shouldn't it?  Do some
> >workstations have some other program called 'conv' that I don't have?
> [MK]=20
>=20
> It is the other way around, other workstations do not have the "conv"
> program that you have.

In that case the assignment will set CONV to nothing and the next line
should set it to /usr/loco/sde...=20

No?

