diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-29 16:29:44 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-29 17:17:43 -0500 |
commit | 1c8e35d0e59d43590ebb5c77251bef51edf45b86 (patch) | |
tree | c443bff5173324440e79a071754eef25dba628ab | |
parent | d9f33a22102f1d00dd7a884c967979c9420c0ec8 (diff) |
development/quilt: Fixed (Don't clobber config file)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
-rw-r--r-- | development/quilt/doinst.sh | 1 | ||||
-rw-r--r-- | development/quilt/quilt.SlackBuild | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/development/quilt/doinst.sh b/development/quilt/doinst.sh index 9dd15cda8753..d90af937d81c 100644 --- a/development/quilt/doinst.sh +++ b/development/quilt/doinst.sh @@ -11,3 +11,4 @@ config() { # Otherwise, we leave the .new copy for the admin to consider... } config etc/quilt.quiltrc.new +config etc/bash_completion.d/quilt.new diff --git a/development/quilt/quilt.SlackBuild b/development/quilt/quilt.SlackBuild index 7c47ebfd2a96..b48e7101e0e2 100644 --- a/development/quilt/quilt.SlackBuild +++ b/development/quilt/quilt.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=quilt VERSION=0.48 -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -79,6 +79,7 @@ make install BUILD_ROOT=$PKG docdir=/usr/doc # Don't clobber the config file mv $PKG/etc/quilt.quiltrc $PKG/etc/quilt.quiltrc.new +mv $PKG/etc/bash_completion.d/quilt $PKG/etc/bash_completion.d/quilt.new find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |