File tree Expand file tree Collapse file tree 1 file changed +3
-15
lines changed Expand file tree Collapse file tree 1 file changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ case $(uname -s) in
17
17
sed -e ' s/^deb/deb-src/' /etc/apt/sources.list | sudo tee /etc/apt/sources.list.d/src.list
18
18
fi
19
19
sudo apt-get update
20
- sudo apt-get install build-essential libpcre2-8-0
20
+ sudo apt-get install build-essential
21
21
sudo apt-get -y build-dep git;;
22
22
esac
23
23
@@ -27,8 +27,6 @@ cd "$DIR"
27
27
printf " %s\n" \
28
28
" NO_GETTEXT=YesPlease" \
29
29
" NO_OPENSSL=YesPlease" \
30
- " USE_LIBPCRE=YesPlease" \
31
- " V=YesPlease" \
32
30
" prefix=$GIT_INSTALL_PATH " \
33
31
> config.mak
34
32
if test -n " $CURLDIR " ; then
@@ -40,23 +38,13 @@ make -j4
40
38
sudo make install
41
39
42
40
echo " Git version:"
43
- git --version
41
+ git --version --build-options
44
42
45
43
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
53
45
case $( uname -s) in
54
46
Darwin)
55
- otool -L " $( command -v git) "
56
- echo " curldir: $CURLDIR "
57
47
otool -L " $( git --exec-path) /git-http-fetch" ;;
58
48
Linux)
59
- ldd " $( command -v git) "
60
- echo " curl"
61
49
ldd " $( git --exec-path) /git-http-fetch" ;;
62
50
esac
You can’t perform that action at this time.
0 commit comments