mbedtls: bump to 2.10.0, drop debuginfo package. (#2664)

* Creating the debuginfo package was not appropriate because "-g"
  is not being passed to the compiler. Bye defineDebugInfoPackage!
* Fix the shebang line of all perl scripts which use /usr/bin/perl
  because one of the scripts is called at the end of the build.
* Add a patchset to fix a wrapper script which assumed incorrect
  paths for 2 runtimes.
This commit is contained in:
fbrosson
2018-06-08 04:51:00 +00:00
parent 5c76c94350
commit 91ae162601
2 changed files with 39 additions and 16 deletions

View File

@@ -0,0 +1,26 @@
From 91a6d0d1fbd5cddf91944957f37a5f2e6aadd94e Mon Sep 17 00:00:00 2001
From: fbrosson <fbrosson@localhost>
Date: Fri, 8 Jun 2018 04:47:21 +0000
Subject: fix relative paths in udp_proxy_wrapper.sh
diff --git a/programs/test/udp_proxy_wrapper.sh b/programs/test/udp_proxy_wrapper.sh
index 29033d5..20df981 100755
--- a/programs/test/udp_proxy_wrapper.sh
+++ b/programs/test/udp_proxy_wrapper.sh
@@ -4,9 +4,9 @@
set -u
-MBEDTLS_BASE="$(dirname -- "$0")/../.."
-TPXY_BIN="$MBEDTLS_BASE/programs/test/udp_proxy"
-SRV_BIN="$MBEDTLS_BASE/programs/ssl/ssl_server2"
+MBEDTLS_BASE="$(dirname -- "$0")"
+TPXY_BIN="$MBEDTLS_BASE/mbedtls_udp_proxy"
+SRV_BIN="$MBEDTLS_BASE/mbedtls_ssl_server2"
: ${VERBOSE:=0}
--
2.17.1