mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Update combine_libs script
Remove commented code from production. Align indentations to 4 spaces.
This commit is contained in:
parent
6260db5733
commit
719169dbe3
@ -8,15 +8,11 @@ ORIGDIR="$(pwd)"
|
||||
trap 'cd "$ORIGDIR" && rm -rf "$TMPDIR"' 0
|
||||
|
||||
abspath() {
|
||||
echo "$(cd "$(dirname "$1")">/dev/null && pwd)/$(basename "$1")"
|
||||
echo "$(cd "$(dirname "$1")" >/dev/null && pwd)/$(basename "$1")"
|
||||
}
|
||||
|
||||
TARGET=$(abspath "$1")
|
||||
|
||||
#echo ORIGDIR="$ORIGDIR"
|
||||
#echo AR="$AR"
|
||||
#echo ARFLAGS="$AFLAGS"
|
||||
|
||||
shift
|
||||
|
||||
for input in "$@"; do
|
||||
@ -24,12 +20,11 @@ for input in "$@"; do
|
||||
abs=$(abspath "$input")
|
||||
dir="$TMPDIR"/$(basename "$input" .a)
|
||||
mkdir "$dir"
|
||||
cd "$dir">/dev/null
|
||||
cd "$dir" >/dev/null
|
||||
"${AR:-ar}" x "$abs"
|
||||
done
|
||||
|
||||
cd "$TMPDIR" >/dev/null
|
||||
#echo "${AR:-ar}" "${ARFLAGS:-cru}" library.tmp.a ./*/**
|
||||
"${AR:-ar}" "${ARFLAGS:-cru}" library.tmp.a ./*/**
|
||||
"${RANLIB:-ranlib}" library.tmp.a
|
||||
mv -f library.tmp.a "$TARGET"
|
||||
|
Loading…
Reference in New Issue
Block a user