From: elf AT netcom DOT com (Marc Singer) Message-Id: <199610260050.RAA07314@netcom3.netcom.com> Subject: Updated MAKE troubles To: djgpp AT delorie DOT com (DJGPP List Alias) Date: Fri, 25 Oct 1996 17:50:06 -0700 (PDT) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 550 I fetched an updated version of make3.75. It does not want to run my makefiles that work fine with v3.73. The problems appear to be related to the use of redirection. I have constructs such as these define loop_projects echo for i in $(SUBPROJ) >> sh.in echo do >> sh.in echo setenv ii $$i >> sh.in echo if [ -d $$ii ] >> sh.in echo then >> sh.in echo echo --- $$ii >> sh.in echo (cd $$ii; $(MAKE) -s $@@ ) >> sh.in echo fi >> sh.in echo done >> sh.in endef They don't work in the latest version. The sh scipt is not created.