diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-06-02 08:45:59 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-06-02 08:45:59 +0000 |
commit | 0a5995a77a8c72cefdae57532fbe56d5c33a007a (patch) | |
tree | cbc224729aa8c1c67c5d24f9fb4a4b6daa6b2427 /include/Makefile | |
parent | e36ba32f1078c15d63545f96c7d7a0bc962ced33 (diff) |
swap /usr/include/openssl and /usr/include/ssl, clean up the Makefiles
get rid old include files; with itojun@ and tdeval@; ok itojun@, deraadt@
Diffstat (limited to 'include/Makefile')
-rw-r--r-- | include/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/Makefile b/include/Makefile index 03fa2356c20..f76c6303a54 100644 --- a/include/Makefile +++ b/include/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.117 2003/05/14 08:01:02 mho Exp $ +# $OpenBSD: Makefile,v 1.118 2003/06/02 08:45:58 markus Exp $ # $NetBSD: Makefile,v 1.59 1996/05/15 21:36:43 jtc Exp $ # @(#)Makefile 5.45.1.1 (Berkeley) 5/6/91 @@ -89,8 +89,11 @@ includes: ${INSTALL} ${INSTALL_COPY} -m 444 $$j ${DESTDIR}/usr/include/$$i/$$j; \ done; \ done - @rm -f ${DESTDIR}/usr/include/openssl - @ln -sf ssl ${DESTDIR}/usr/include/openssl + @rm -rf ${DESTDIR}/usr/include/openssl ${DESTDIR}/usr/include/ssl \ + ${DESTDIR}/usr/libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/ssl \ + ${DESTDIR}/usr/libdata/perl5/site_perl/${MACHINE_ARCH}-openbsd/openssl + @mkdir ${DESTDIR}/usr/include/openssl + @ln -sf openssl ${DESTDIR}/usr/include/ssl @echo installing ${LFILES} @for i in ${LFILES}; do \ rm -f ${DESTDIR}/usr/include/$$i && \ |