"Nick Hammond" <[EMAIL PROTECTED]> wrote:

> Having followed John Marshalls helpful advice on directory structures on
> pilot.programmer.gcc (which seems to be off the air at the moment), I have
> got to the stage where the new GCC compiler works correctly under Cygwin.
> The next problem is build-prc.exe which refuses to accept wildcards using
> either the old or the new command line style.  For example, both:
>     build-prc appname.prc 'appname' apID *.bin *.grc
> and
>     build-prc -o appname appname.def appname *.bin
> result in the complaint "can't open raw file *.bin".  The 0.5.1 version of
> build-prc, however, has no problem with the first form.
> 
> Can anyone throw any light on what's going on?

I had exactly this same problem. I traced it down to the fact that make 
was using command.com instead of sh.exe to execute commands. Naturally, 
command.com does not do file globbing (and apparently neither does 
build-prc), but sh.exe does.

My solution was to
1. Make sure that sh.exe is in a directory that's in my PATH
2. Set the MAKE_MODE environment variable to UNIX

All this is, of course, assuming that you are using make. If not, then 
just try running build-prc from a bash command prompt rather than a DOS 
one.

--
Roger Chaplin
<[EMAIL PROTECTED]>

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palm.com/devzone/mailinglists.html

Reply via email to