mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2026-04-04 14:08:39 +00:00
Rm polarssl compat targets from Makefiles
This commit is contained in:
parent
8fe411e9c1
commit
129db08c90
6 changed files with 6 additions and 82 deletions
|
|
@ -1,27 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Create libpolarssl.* symlinks in the given directory
|
||||
|
||||
if [ $# -ne 1 ]; then
|
||||
echo "Usage: $0 <target-directory>" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -d "$1" ]; then :; else
|
||||
echo "$0: target directory must exist" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if cd "$1"; then :; else
|
||||
echo "$0: cd '$1' failed" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ls | grep 'libmbedtls\.' >/dev/null; then :; else
|
||||
echo "$0: libmbedtls not found in target directory" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
for f in libmbedtls.*; do
|
||||
ln -sf $f libpolarssl${f#libmbedtls}
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue