1
0
Fork 0

feat: use libc from jessie on wheezy

timestamps
dump_stack() 2023-05-27 18:45:17 +00:00
parent 5813721dc9
commit 3d70591717
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 3 additions and 0 deletions

View File

@ -314,6 +314,9 @@ func (d Debian) runs() (commands []string) {
cmdf("echo 'Pin-Priority: 10' >> /etc/apt/preferences.d/jessie")
cmdf("apt-get -y update")
// glibc guarantee backwards compatibility, so should be no problem
cmdf("apt-get -y install -t jessie libc6-dev")
}
if d.release == 12 {