summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author Robby Workman2021-08-01 10:42:36 +0200
committer Robby Workman2021-08-01 11:20:55 +0200
commit98c7fdc7b7069b356b17780542a4b659586a145b (patch)
tree5cdc7652cbca8bc0bb8f0a9858bdd04ed34ba7d9 /system
parent667a24046635706bc16a0a3311dd3174605eaca6 (diff)
downloadslackbuilds-98c7fdc7b7069b356b17780542a4b659586a145b.tar.gz
system/skim: Install bash-completion file to systemwide dir
Diffstat (limited to 'system')
-rw-r--r--system/skim/skim.SlackBuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/skim/skim.SlackBuild b/system/skim/skim.SlackBuild
index 7a0eebbd44..b9cd09e8fe 100644
--- a/system/skim/skim.SlackBuild
+++ b/system/skim/skim.SlackBuild
@@ -151,8 +151,8 @@ find target -name $BINNAM -exec install -m 755 {} $PKG/usr/bin/$BINNAM \;
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-mkdir -p $PKG/etc/bash_completion.d
-install -m 755 shell/completion.bash $PKG/etc/bash_completion.d/skim
+mkdir -p $PKG/usr/share/bash-completion/completions
+install -m 644 shell/completion.bash $PKG/usr/share/bash-completion/completions/skim
mkdir -p $PKG/usr/man/man1
cp -a man/man1/*.1 $PKG/usr/man/man1