File: lib32gccLC.postinst

package info (click to toggle)
gcc-8 8.2.0-20
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 98,728 kB
  • sloc: makefile: 2,207; sh: 954; python: 811; awk: 23; cpp: 14
file content (12 lines) | stat: -rw-r--r-- 199 bytes parent folder | download | duplicates (95)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh -e

case "$1" in
    configure)
	docdir=/usr/share/doc/lib32gcc@LC@
	if [ -d $docdir ] && [ ! -h $docdir ]; then
	    rm -rf $docdir
	    ln -s gcc-@BV@-base $docdir
	fi
esac

#DEBHELPER#