FIXED: a bug in the overlay makefile for ex3.6

utzoo!decvax!duke!chico!harpo!cbosg!ihnss!ucbvax!dist2 utzoo!decvax!duke!chico!harpo!cbosg!ihnss!ucbvax!dist2
Sun Dec 6 02:58:50 AEST 1981


	Comments confuse make when dealing with multiline commands, so
the previously published correction to src/ex/ex3/makefile.ovly must be
ammended slightly:

	diff src/ex/ex3/makefile.ovly.old src/ex/ex3/makefile.ovly
	72d71
	< 	${LD} -X /lib/crt0.o -i \
	75a75
	> 	${LD} -X /lib/crt0.o -i \
	86d85
	< 	${LD} -X /lib/crt0.o -o a.out.40 -n \
	89a89
	> 	${LD} -X /lib/crt0.o -o a.out.40 -n \

In context, the changes are:


	src/ex/ex3/makefile.ovly.old:

	a.out:	${OBJS}
		${LD} -X /lib/crt0.o -i \
	# if no floating point unit
	#	${LD} -X /lib/fcrt0.o -i \
	# end no floating point unit
	.
	.
	.
	a.out.40:	${OBJS}
		${LD} -X /lib/crt0.o -o a.out.40 -n \
	# if no floating point unit
	#	${LD} -X /lib/fcrt0.o -o a.out.40 -n \
	# end no floating point unit


	src/ex/ex3/makefile.ovly:

	a.out:	${OBJS}
	# if no floating point unit
	#	${LD} -X /lib/fcrt0.o -i \
	# end no floating point unit
		${LD} -X /lib/crt0.o -i \
	.
	.
	.
	a.out.40:	${OBJS}
	# if no floating point unit
	#	${LD} -X /lib/fcrt0.o -o a.out.40 -n \
	# end no floating point unit
		${LD} -X /lib/crt0.o -o a.out.40 -n \

These changes should be made to all tapes written before 12/6/81.

			Carl



More information about the Comp.bugs.2bsd mailing list