diff options
author | Josh Blum <josh@joshknows.com> | 2011-10-14 12:12:55 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-10-14 12:12:55 -0700 |
commit | 1eefd6f232241efcf678657dd638874c0f444c6f (patch) | |
tree | 861ffc8852d835d34ec03d7b8d66978e75628226 /host/cmake/debian/postrm.in | |
parent | f817f6f1db02d8a0cd6698510a2094ebce3bd171 (diff) | |
download | uhd-1eefd6f232241efcf678657dd638874c0f444c6f.tar.gz uhd-1eefd6f232241efcf678657dd638874c0f444c6f.tar.bz2 uhd-1eefd6f232241efcf678657dd638874c0f444c6f.zip |
uhd: added post/pre un/install scripts for deb and rpm packagesrelease_003_003_000
Diffstat (limited to 'host/cmake/debian/postrm.in')
-rwxr-xr-x | host/cmake/debian/postrm.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/host/cmake/debian/postrm.in b/host/cmake/debian/postrm.in new file mode 100755 index 000000000..e98d1dba4 --- /dev/null +++ b/host/cmake/debian/postrm.in @@ -0,0 +1,20 @@ +# +# Copyright 2011 Ettus Research LLC +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. +# + +if [ "$1" = "remove" ]; then + ldconfig +fi |