summaryrefslogtreecommitdiffstats
path: root/source/a
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2024-01-09 20:49:08 +0000
committer Eric Hameleers <alien@slackware.com>2024-01-09 22:32:52 +0100
commit070f5e03ce6f386a652f1fbdcfdd023bd5af7a0a (patch)
tree340183e91edf8d54e015d2c6bef5b37b4af79696 /source/a
parent09504fc48447542878036d98e868b525789c7bc6 (diff)
downloadcurrent-070f5e03ce6f386a652f1fbdcfdd023bd5af7a0a.tar.gz
current-070f5e03ce6f386a652f1fbdcfdd023bd5af7a0a.tar.xz
Tue Jan 9 20:49:08 UTC 202420240109204908
a/mcelog-197-x86_64-1.txz: Upgraded. ap/qpdf-11.8.0-x86_64-1.txz: Upgraded. kde/qca-2.3.8-x86_64-1.txz: Upgraded. l/enchant-2.6.5-x86_64-1.txz: Upgraded. n/iproute2-6.7.0-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-115.6.1-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.thunderbird.net/en-US/thunderbird/115.6.1/releasenotes/
Diffstat (limited to 'source/a')
-rwxr-xr-xsource/a/btrfs-progs/btrfs-progs.SlackBuild8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/a/btrfs-progs/btrfs-progs.SlackBuild b/source/a/btrfs-progs/btrfs-progs.SlackBuild
index c995a42d1..bd36c98d8 100755
--- a/source/a/btrfs-progs/btrfs-progs.SlackBuild
+++ b/source/a/btrfs-progs/btrfs-progs.SlackBuild
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 2009, 2010, 2011, 2015, 2017 Patrick J. Volkerding, Sebeka, MN, USA
+# Copyright 2009, 2010, 2011, 2015, 2017, 2024 Patrick J. Volkerding, Sebeka, MN, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -119,6 +119,12 @@ make install DESTDIR=$PKG || exit 1
# Don't ship static library:
rm -f $PKG/usr/lib${LIBDIRSUFFIX}/*.a
+# Install the bash-completion file manually:
+mkdir -p $PKG/usr/share/bash-completion/completions
+cp -a btrfs-completion $PKG/usr/share/bash-completion/completions/btrfs
+chown root:root $PKG/usr/share/bash-completion/completions/btrfs
+chmod 644 $PKG/usr/share/bash-completion/completions/btrfs
+
# Strip binaries:
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null