2a52e3974d
git-subtree-dir: projects/rocm-smi-lib git-subtree-mainline:25536e61begit-subtree-split:7dba992ebd
9 lines
297 B
Bash
Executable File
9 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# second term originates from ENABLE_LDCONFIG = ON/OFF at package build
|
|
if [ "$1" -le 1 ] && [ "@ENABLE_LDCONFIG@" == "ON" ]; then
|
|
# perform the below actions for rpm remove($1=0) or upgrade($1=1) operations
|
|
rm -f /etc/ld.so.conf.d/x86_64-librocm_smi_lib.conf
|
|
ldconfig
|
|
fi
|