On 2015/02/18 12:20, Christian Weisgerber wrote:
> On 2015-02-16, Jérémie Courrèges-Anglas <[email protected]> wrote:
>
> >> - @ln -sf openssl ${DESTDIR}/usr/include/ssl
> >
> > Not ok for this part...
>
> I now have
>
> lrwxr-xr-x 1 root bin 7 Feb 17 15:32 /usr/include/openssl/openssl ->
> openssl
>
> on updated systems.
>
> /usr/include/openssl/blowfish.h:62:33: error:
> /usr/include/openssl/openssl/opensslconf.h: Too many levels of symbolic links
>
> --
> Christian "naddy" Weisgerber [email protected]
>
This should fix it..
Index: Makefile
===================================================================
RCS file: /cvs/src/include/Makefile,v
retrieving revision 1.199
diff -u -p -r1.199 Makefile
--- Makefile 16 Feb 2015 14:06:15 -0000 1.199
+++ Makefile 18 Feb 2015 12:54:31 -0000
@@ -89,7 +89,7 @@ includes:
${INSTALL} ${INSTALL_COPY} -m 444 $$j
${DESTDIR}/usr/include/$$i/$$j; \
done; \
done
- @ln -sf openssl ${DESTDIR}/usr/include/ssl
+ @ln -sfh openssl ${DESTDIR}/usr/include/ssl
@echo installing ${LFILES}
@for i in ${LFILES}; do \
rm -f ${DESTDIR}/usr/include/$$i && \