d8cba83d42
git-subtree-dir: projects/rocr-runtime git-subtree-mainline:ad0fb25ed5git-subtree-split:72061a9024
20 lines
200 B
Bash
Executable File
20 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
rm_ldconfig() {
|
|
rm -f /etc/ld.so.conf.d/rocr_tools_legacy.conf && ldconfig
|
|
}
|
|
|
|
case "$1" in
|
|
remove)
|
|
rm_ldconfig
|
|
;;
|
|
purge)
|
|
;;
|
|
*)
|
|
exit 0
|
|
;;
|
|
esac
|
|
|