Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Jul 1995 10:35:59 +0200
From:      "Christoph P. Kukulies" <kuku@gilberto.physik.rwth-aachen.de>
To:        freebsd-hackers@freefall.cdrom.com
Subject:   make weirdness
Message-ID:  <199507130835.KAA09533@gilberto.physik.rwth-aachen.de>

next in thread | raw e-mail | index | archive | help

I noticed the following different make behaviour between
1.1.5.1 make and -current make :


Script started on Thu Jul 13 10:32:19 1995
gilberto> cat l
test:
	for i in 1 2 3 ; \
	do ; \
	echo $$i ; \
	done
gilberto> make -f l
for i in 1 2 3 ;  do ;  echo $i ;  done
1
2
3
gilberto> rlogin blues
blues> cat l
test:
	for i in 1 2 3 ; \
	do ; \
	echo $$i ; \
	done
blues> make -f l
for i in 1 2 3 ;  do ;  echo $i ;  done
Syntax error: ";" unexpected                              !!!!!!!!!!!
*** Error code 2

Stop.
blues>
Script done on Thu Jul 13 10:32:52 1995


--Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de
FreeBSD blues.physik.rwth-aachen.de 2.0-BUILT-19950701 FreeBSD 2.0-BUILT-



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199507130835.KAA09533>