diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2021-08-01 03:47:26 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2021-08-01 04:20:55 -0500 |
commit | 7b6863085d7cbcb208af242d99f9dc4dfb30c5a2 (patch) | |
tree | 7683d2392ff0c134c19ee9c6454056bce2200cf3 /system/monit | |
parent | f6ff6365ff975d6829d6ed2c4ea3abde3943256a (diff) |
system/monit: Install bash-completion file to systemwide dir
Diffstat (limited to 'system/monit')
-rw-r--r-- | system/monit/monit.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/monit/monit.SlackBuild b/system/monit/monit.SlackBuild index d616f063f1db4..e6eaf5bcf7393 100644 --- a/system/monit/monit.SlackBuild +++ b/system/monit/monit.SlackBuild @@ -104,8 +104,8 @@ for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; r cp monitrc $PKG/etc/monitrc.new -mkdir -p $PKG/etc/bash_completion.d -cp system/bash/monit $PKG/etc/bash_completion.d +mkdir -p $PKG/usr/share/bash-completion/completions +cp system/bash/monit $PKG/usr/share/bash-completion/completions/monit mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a COPYING CONTRIBUTORS README $PKG/usr/doc/$PRGNAM-$VERSION |