blob: 23ca3ff1c06e2e436aab058e8cafc659780b5974 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: DEINSTALL,v 1.1 2004/05/11 17:33:42 recht Exp $
case ${STAGE} in
DEINSTALL)
${CAT} << EOF
===========================================================================
Note:
Removing Assemblies from the Global Assembly Cache.
===========================================================================
EOF
assemblies=`${LS} @PREFIX@/lib/mono/gac`
for a in $assemblies; do
@PREFIX@/bin/gacutil -u $a
done
;;
esac
|