diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-05-17 20:58:53 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-05-17 20:58:53 +0000 |
commit | f11726733cef6f8957a893c0b64678f206c43757 (patch) | |
tree | 64f063b3be756b7886c4151352b2a490bedbf04d /Makefile | |
parent | 9791be1f3cfadb880c07841fc41eee65ff2964eb (diff) |
Don't build libperl separately in the libs pass, just build it when
we build perl itself. We need perl to run Configure *after* the
other libraries are installed, since Configure looks at what symbols
exist in libc and the other libs. If anfd when other things in the tree
link against libperl we may need to revisit this issue.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.91 2003/05/14 08:01:02 mho Exp $ +# $OpenBSD: Makefile,v 1.92 2003/05/17 20:58:52 millert Exp $ # # For more information on building in tricky environments, please see @@ -80,10 +80,6 @@ build: cd ${.CURDIR}/kerberosV/lib && ${MAKE} depend && ${MAKE} && \ NOMAN=1 exec ${SUDO} ${MAKE} install .endif - cd ${.CURDIR}/gnu/usr.bin/perl && \ - ${MAKE} -f Makefile.bsd-wrapper depend && \ - ${MAKE} -f Makefile.bsd-wrapper perl.lib && \ - exec ${SUDO} ${MAKE} -f Makefile.bsd-wrapper install.lib ${MAKE} depend && ${MAKE} && exec ${SUDO} ${MAKE} install .if !defined(TARGET) |