Commit 9db9c3c 1 parent cfb371a commit 9db9c3c Copy full SHA for 9db9c3c
File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -89,12 +89,16 @@ deb http://ddebs.ubuntu.com $(lsb_release -cs 2> /dev/null)-updates main restric
89
89
deb http://ddebs.ubuntu.com $( lsb_release -cs 2> /dev/null) -proposed main restricted universe multiverse" | \
90
90
$SUDO tee -a /etc/apt/sources.list.d/ddebs.list
91
91
$SUDO apt-get update -qq
92
- DEP=" libssl1.1-dbgsym"
92
+ # DEP="libssl1.1-dbgsym"
93
+ DEP=` apt-cache depends openssl | grep ' libssl' | sed -e ' s/^.*libssl/libssl/' ` -dbgsym
94
+ echo " DEP using apt-cache depends openssl:
93
95
if [ -f " /usr/lib/x86_64-linux-gnu/libssl.so.3" ]; then
94
96
# libcrypto is in same package as libssl
95
97
DEPX=` dpkg -S " /usr/lib/x86_64-linux-gnu/libssl.so.3" `
96
98
DEP=" ${DEPX%%:* } -dbgsym"
99
+ echo " DEP linking in /usr/lib/x86_64-linux-gnu dir:$DEP "
97
100
fi
101
+
98
102
$SUDO apt-get install -y openssl-dbgsym " $DEP " softhsm2-dbgsym libsofthsm2-dbgsym
99
103
fi
100
104
You can’t perform that action at this time.
0 commit comments