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