Skip to content

Commit 5346fcd

Browse files
committed
TEST
1 parent bac85e6 commit 5346fcd

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

script/build-git

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ case $(uname -s) in
1717
sed -e 's/^deb/deb-src/' /etc/apt/sources.list | sudo tee /etc/apt/sources.list.d/src.list
1818
fi
1919
sudo apt-get update
20-
sudo apt-get install build-essential libpcre2-8-0
20+
sudo apt-get install build-essential
2121
sudo apt-get -y build-dep git;;
2222
esac
2323

@@ -27,8 +27,6 @@ cd "$DIR"
2727
printf "%s\n" \
2828
"NO_GETTEXT=YesPlease" \
2929
"NO_OPENSSL=YesPlease" \
30-
"USE_LIBPCRE=YesPlease" \
31-
"V=YesPlease" \
3230
"prefix=$GIT_INSTALL_PATH" \
3331
> config.mak
3432
if test -n "$CURLDIR"; then
@@ -40,23 +38,13 @@ make -j4
4038
sudo make install
4139

4240
echo "Git version:"
43-
git --version
41+
git --version --build-options
4442

4543
echo "Git dependencies:"
46-
command -v curl
47-
command -v openssl
48-
#command -v pcre2grep
49-
curl --version
50-
openssl version
51-
#pcre2grep --version
52-
curl-config --libs
44+
curl-config --version
5345
case $(uname -s) in
5446
Darwin)
55-
otool -L "$(command -v git)"
56-
echo "curldir: $CURLDIR"
5747
otool -L "$(git --exec-path)/git-http-fetch";;
5848
Linux)
59-
ldd "$(command -v git)"
60-
echo "curl"
6149
ldd "$(git --exec-path)/git-http-fetch";;
6250
esac

0 commit comments

Comments
 (0)