Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watmath!clyde!rutgers!mit-eddie!bloom-beacon!wesommer From: wesommer@bloom-beacon.UUCP Newsgroups: comp.bugs.4bsd Subject: Archaic kludge in src/lib/libc/gen/Makefile Message-ID: <911@bloom-beacon.MIT.EDU> Date: Sun, 14-Jun-87 00:20:37 EDT Article-I.D.: bloom-be.911 Posted: Sun Jun 14 00:20:37 1987 Date-Received: Sun, 14-Jun-87 18:39:04 EDT Sender: daemon@bloom-beacon.MIT.EDU Reply-To: wesommer@athena.mit.edu Organization: Massachusetts Institute of Technology Lines: 33 The unportable kludge once used to make the text of strings in sys_errlst read-only and shared is unnecessary; the compiler now supports a better way to do this (-R), so it's possible to de-kludge the Makefile in /src/lib/libc/gen. /src/lib/libc/gen/:errfix (the ed script) can also be deleted, since it's no longer necessary. Bill Sommerfeld wesommer@athena.mit.edu ...!mit-eddie!wesommer *** Makefile.old Sun Jun 14 00:16:53 1987 --- Makefile Sun Jun 14 00:09:14 1987 *************** *** 62,70 **** @ar cru genlib ${OBJS} errlst.o: errlst.c ! cc -S ${DEFS} errlst.c ! ed - <:errfix errlst.s ! as -o errlst.o errlst.s cp errlst.o profiled/errlst.o rm errlst.s --- 62,68 ---- @ar cru genlib ${OBJS} errlst.o: errlst.c ! cc -c -R ${DEFS} errlst.c cp errlst.o profiled/errlst.o rm errlst.s