mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 15:25:38 +01:00
Fix "make install" handling of symlinks
This commit is contained in:
parent
637376c2fe
commit
f5203e0bb5
@ -28,6 +28,7 @@ Features
|
|||||||
errors on use of deprecated functions.
|
errors on use of deprecated functions.
|
||||||
|
|
||||||
Bugfix
|
Bugfix
|
||||||
|
* Fix handling of symlinks by "make install" (found by Gaël PORTAY).
|
||||||
* Fix potential NULL pointer dereference (not trigerrable remotely) when
|
* Fix potential NULL pointer dereference (not trigerrable remotely) when
|
||||||
ssl_write() is called before the handshake is finished (introduced in
|
ssl_write() is called before the handshake is finished (introduced in
|
||||||
1.3.10) (first reported by Martin Blumenstingl).
|
1.3.10) (first reported by Martin Blumenstingl).
|
||||||
|
2
Makefile
2
Makefile
@ -23,7 +23,7 @@ install:
|
|||||||
cp -r include/polarssl $(DESTDIR)/include
|
cp -r include/polarssl $(DESTDIR)/include
|
||||||
|
|
||||||
mkdir -p $(DESTDIR)/lib
|
mkdir -p $(DESTDIR)/lib
|
||||||
cp library/libpolarssl.* library/libmbedtls.* $(DESTDIR)/lib
|
cp -RP library/libpolarssl.* library/libmbedtls.* $(DESTDIR)/lib
|
||||||
|
|
||||||
mkdir -p $(DESTDIR)/bin
|
mkdir -p $(DESTDIR)/bin
|
||||||
for p in programs/*/* ; do \
|
for p in programs/*/* ; do \
|
||||||
|
Loading…
Reference in New Issue
Block a user