[4219] in Athena Bugs
/source/athena/athena.lib/ss/Makefile
daemon@ATHENA.MIT.EDU (Jonathan I. Kamens)
Tue Feb 13 19:12:33 1990
Date: Tue, 13 Feb 90 19:12:18 -0500
From: Jonathan I. Kamens <jik@PIT-MANAGER.MIT.EDU>
To: bugs@ATHENA.MIT.EDU
The Makefile for the ss library installs the regular ss library
(libss.a) where it means to install the profiled ss library
(libss_p.a) with the net result that the two libraries are identical
after installation. The following patch fixes the Makefile.
jik
*** Makefile.orig Tue Feb 13 19:00:39 1990
--- Makefile Tue Feb 13 19:05:54 1990
***************
*** 74,80 ****
install -c -s mk_cmds ${DESTDIR}/usr/athena/mk_cmds
install -c libss.a ${DESTDIR}/usr/athena/lib/libss.a
ranlib ${DESTDIR}/usr/athena/lib/libss.a
! install -c libss.a ${DESTDIR}/usr/athena/lib/libss_p.a
ranlib ${DESTDIR}/usr/athena/lib/libss_p.a
@rm -rf ${DESTDIR}/usr/include/ss
@mkdir ${DESTDIR}/usr/include/ss
--- 74,80 ----
install -c -s mk_cmds ${DESTDIR}/usr/athena/mk_cmds
install -c libss.a ${DESTDIR}/usr/athena/lib/libss.a
ranlib ${DESTDIR}/usr/athena/lib/libss.a
! install -c libss_p.a ${DESTDIR}/usr/athena/lib/libss_p.a
ranlib ${DESTDIR}/usr/athena/lib/libss_p.a
@rm -rf ${DESTDIR}/usr/include/ss
@mkdir ${DESTDIR}/usr/include/ss