File: libc6-armel-cross.preinst

package info (click to toggle)
cross-toolchain-base 33
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 356 kB
  • sloc: makefile: 1,233; perl: 1,230; sh: 254; python: 43
file content (14 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

set -e

case "$1" in
    upgrade)
	if dpkg --compare-versions "$2" lt 2.27-3ubuntu1.1; then
	    if [ -h /usr/arm-linux-gnueabihf/libsf ]; then
		rm -f /usr/arm-linux-gnueabihf/libsf
	    fi
	fi
esac

exit 0