Sophie

Sophie

distrib > Mageia > 2 > i586 > media > core-updates > by-pkgid > ac6d81257eadbbbd41013736e23499e4 > scriptlet

kernel-tmb-source-3.4.34-1.mga2-1-1.mga2.noarch.rpm

PREUN

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

#
# kernel-source-latest: virtual rpm
#

POSTIN

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