d8cba83d42
git-subtree-dir: projects/rocr-runtime git-subtree-mainline:ad0fb25ed5git-subtree-split:72061a9024
20 lines
276 B
Plaintext
Executable File
20 lines
276 B
Plaintext
Executable File
#/bin/bash
|
|
|
|
set -e
|
|
|
|
do_ldconfig() {
|
|
echo /opt/rocm/hsa/lib > /etc/ld.so.conf.d/rocr_tools_legacy.conf && ldconfig
|
|
}
|
|
|
|
case "$1" in
|
|
configure)
|
|
do_ldconfig
|
|
;;
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
echo "$1"
|
|
;;
|
|
*)
|
|
exit 0
|
|
;;
|
|
esac
|