Sophie

Sophie

distrib > Mageia > 6 > armv7hl > by-pkgid > e43ee37ea3d4ba7744361ea8d4adc645 > scriptlet

kernel-tmb-source-4.14.44-2.mga6-1-1.mga6.noarch.rpm

PREUN

/bin/sh
for i in /lib/modules/4.14.44-tmb-*-2.mga6/{build,source}; do
	if [ -L $i ]; then
		if [ "$(readlink $i)" = "/usr/src/4.14.44-tmb-2.mga6" ]; then
			rm -f $i
		fi
	fi
done
exit 0

#
# kernel-source-latest: virtual rpm
#

POSTIN

/bin/sh
for i in /lib/modules/4.14.44-tmb-*-2.mga6; do
        if [ -d $i ]; then
		if [ ! -L $i/build -a ! -L $i/source ]; then
            		ln -sf /usr/src/4.14.44-tmb-2.mga6 $i/build
            		ln -sf /usr/src/4.14.44-tmb-2.mga6 $i/source
		fi
        fi
done