Files
rocm-systems/projects/clr/opencl/packaging/rocm-opencl.postrm
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 строки
146 B
Bash
Исходник Обычный вид История

#!/bin/bash
set -e
rm_ldconfig() {
ldconfig
}
case "$1" in
purge)
;;
remove | upgrade )
rm_ldconfig
;;
*)
exit 0
;;
esac