#!/bin/bash set -e # left-hand term originates from ENABLE_LDCONFIG = ON/OFF at package build rm_ldconfig() { if [ "@ENABLE_LDCONFIG@" == "ON" ]; then rm -f /etc/ld.so.conf.d/x86_64-libhsakmt.conf && ldconfig fi } case "$1" in ( remove ) rm_ldconfig ;; ( purge ) ;; ( * ) exit 0 ;; esac