diff options
Diffstat (limited to 'source/ap/lxc/lxc.SlackBuild')
-rwxr-xr-x | source/ap/lxc/lxc.SlackBuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/source/ap/lxc/lxc.SlackBuild b/source/ap/lxc/lxc.SlackBuild index 7b82f89e..2ae036b6 100755 --- a/source/ap/lxc/lxc.SlackBuild +++ b/source/ap/lxc/lxc.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2011, 2012 Patrick J. Volkerding, Sebeka, Minnesota, USA +# Copyright 2011, 2012, 2013 Patrick J. Volkerding, Sebeka, Minnesota, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ PKGNAM=lxc VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z* | rev | cut -f 3- -d . | rev | cut -f 2- -d -)} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -105,6 +105,10 @@ cp -a \ mkdir -p $PKG/usr/doc/${PKGNAM}-$VERSION/examples cp -a doc/examples/*.conf $PKG/usr/doc/${PKGNAM}-$VERSION/examples +# Fix up man pages to stop 'man' from barfing a warning: +( cd $PKG/usr/man + fgrep -lr -- '-*- coding: us-ascii -*-' . | xargs sed -i '/-*- coding: us-ascii -*-/d' ) + # Compress and if needed symlink the man pages: if [ -d $PKG/usr/man ]; then ( cd $PKG/usr/man |