Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
mbedtls
Commits
52a5079c
Commit
52a5079c
authored
Jul 27, 2015
by
Manuel Pégourié-Gonnard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bug with install target in make
closes #223
parent
6f42417b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
ChangeLog
ChangeLog
+4
-1
Makefile
Makefile
+5
-1
No files found.
ChangeLog
View file @
52a5079c
...
...
@@ -6,8 +6,11 @@ Bugfix
* Fix segfault in the benchmark program when benchmarking DHM.
* Fix build error with CMake and pre-4.5 versions of GCC (found by Hugo
Leisink).
* Fix bug in CMake lists that cause libmbedcrypto.a not to be installed
* Fix bug in CMake lists that cause
d
libmbedcrypto.a not to be installed
(found by Benoit Lecocq).
* Fix bug in Makefile that caused libmbedcrypto and libmbedx509 not to be
installed (found by Rawi666).
= mbed TLS 2.0.0 released 2015-07-13
...
...
Makefile
View file @
52a5079c
...
...
@@ -25,7 +25,9 @@ install: all
cp
-r
include/mbedtls
$(DESTDIR)
/include
mkdir
-p
$(DESTDIR)
/lib
cp
-RP
library/libmbedtls.
*
$(DESTDIR)
/lib
cp
-RP
library/libmbedtls.
*
$(DESTDIR)
/lib
cp
-RP
library/libmbedx509.
*
$(DESTDIR)
/lib
cp
-RP
library/libmbedcrypto.
*
$(DESTDIR)
/lib
mkdir
-p
$(DESTDIR)
/bin
for
p
in
programs/
*
/
*
;
do
\
...
...
@@ -40,6 +42,8 @@ install: all
uninstall
:
rm
-rf
$(DESTDIR)
/include/mbedtls
rm
-f
$(DESTDIR)
/lib/libmbedtls.
*
rm
-f
$(DESTDIR)
/lib/libmbedx509.
*
rm
-f
$(DESTDIR)
/lib/libmbedcrypto.
*
for
p
in
programs/
*
/
*
;
do
\
if
[
-x
$$
p
]
&&
[
!
-d
$$
p
]
;
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment