From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.7 required=5.0 tests=BAYES_00,MSGID_RANDY autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,cd44e8366a54c3b9,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2000-12-13 11:40:10 PST Path: supernews.google.com!sn-xit-02!supernews.com!news.gv.tsc.tdk.com!news.iac.net!newsgate.cistron.nl!newsfeeds.belnet.be!news.belnet.be!oleane.net!oleane!news.maxwell.syr.edu!nntp2.deja.com!nnrp1.deja.com!not-for-mail From: Robert Dewar Newsgroups: comp.lang.ada Subject: Re: GtkAda make interferences Date: Wed, 13 Dec 2000 19:32:01 GMT Organization: Deja.com Message-ID: <918irh$3u8$1@nnrp1.deja.com> References: <3A37950A.D475C8FA@limsi.fr> NNTP-Posting-Host: 205.232.38.41 X-Article-Creation-Date: Wed Dec 13 19:32:01 2000 GMT X-Http-User-Agent: Mozilla/4.61 [en] (OS/2; U) X-Http-Proxy: 1.0 x71.deja.com:80 (Squid/1.1.22) for client 205.232.38.41 X-MyDeja-Info: XMYDJUIDrobert_dewar Xref: supernews.google.com comp.lang.ada:3086 Date: 2000-12-13T19:32:01+00:00 List-Id: In article <3A37950A.D475C8FA@limsi.fr>, Philippe Tarroux wrote: > A question marginally related to ada: Please do not send HTML attachments to CLA, just use plain ASCII if you want as many people as possible to read your msg. Indeed this msg has little to do with Ada, it seems like it would more appropriately be sent to the gtkada mailing list, consult the gtkada documentation for details. Sent via Deja.com http://www.deja.com/ From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,cd44e8366a54c3b9 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2000-12-13 13:29:28 PST Path: supernews.google.com!sn-xit-02!sn-xit-03!supernews.com!newsfeed.direct.ca!look.ca!hammer.uoregon.edu!skates!not-for-mail From: Stephen Leake Newsgroups: comp.lang.ada Subject: Re: GtkAda make interferences Date: 13 Dec 2000 16:11:15 -0500 Organization: NASA Goddard Space Flight Center Message-ID: References: <3A37950A.D475C8FA@limsi.fr> NNTP-Posting-Host: anarres.gsfc.nasa.gov Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: skates.gsfc.nasa.gov 976742584 19311 128.183.220.71 (13 Dec 2000 21:23:04 GMT) X-Complaints-To: dscoggin@cne-odin.gsfc.nasa.gov NNTP-Posting-Date: 13 Dec 2000 21:23:04 GMT User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.6 Xref: supernews.google.com comp.lang.ada:3096 Date: 2000-12-13T21:23:04+00:00 List-Id: Philippe Tarroux writes: > Please don't send html to a newsgroup > > I identified that the problem > comes from the sh.exe present in the bin provided with GtkAda. When > i remove it, there is no more problem! I can't figure out why. The make distributed with GNAT for win32 searches the PATH for "sh.exe". If it finds it, it uses that for the shell. If not, it uses the DOS shell cmd.exe. So now that make can find sh.exe, it has changed it's behavior. Unfortunately, I don't think there is a way to force it to ignore sh.exe. You can try setting SHELL=cmd.exe in each makefile; that might work. You might have to specify the full path to cmd.exe. -- -- Stephe