File: picolibc-arm-none-eabi.postinst

package info (click to toggle)
picolibc 1.8.10-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 35,180 kB
  • sloc: ansic: 281,743; asm: 24,646; python: 2,282; sh: 2,237; perl: 680; pascal: 329; exp: 287; makefile: 209; cpp: 72; xml: 40
file content (28 lines) | stat: -rwxr-xr-x 548 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh

set -e

ARCH=arm-none-eabi

case "$1" in
    configure|triggered)
	if which $ARCH-gcc > /dev/null; then
	    target=`$ARCH-gcc -print-search-dirs | sed -n '/^install:/s/^install: //p'`
            for source in /usr/lib/picolibc/$ARCH/*.specs; do
	        if [ -d "$target" -a -f "$source" ]; then
		    cp -a "$source" "$target" || true
	        fi
            done
	fi
	;;
    abort-upgrade|abort-remove|abort-deconfigure)
	;;
    *)
	echo "postinst called with unknown argument \`$1'" >&2
        exit 1
	;;
esac

#DEBHELPER#

exit 0