diff options
author | ArTourter <artourter@gmail.com> | 2023-07-31 22:59:48 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-08-05 10:08:41 +0700 |
commit | 477d6de596cc767780302f1fefb386b9db3113e7 (patch) | |
tree | 2ea76e8b5b2fc0fa8ebfbfc3cf343dd7c65c2da8 /academic/units/douninst.sh | |
parent | d578b7cbf804d5838c723d10d809df938aa34fe1 (diff) |
academic/units: Fix paths and run install-info
Thanks to @urchlay for the fixes.
Signed-off-by: ArTourter <artourter@gmail.com>
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'academic/units/douninst.sh')
-rw-r--r-- | academic/units/douninst.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/academic/units/douninst.sh b/academic/units/douninst.sh new file mode 100644 index 0000000000000..0273142e5cf56 --- /dev/null +++ b/academic/units/douninst.sh @@ -0,0 +1,9 @@ +if [ -x /usr/bin/install-info -a -d usr/info ]; then + ( + cd usr/info + rm -f dir + for i in *.info*; do + /usr/bin/install-info $i dir 1>/dev/null 2>&1 + done + ) +fi |