diff options
Diffstat (limited to 'source/a/etc/etc.SlackBuild')
-rwxr-xr-x | source/a/etc/etc.SlackBuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/source/a/etc/etc.SlackBuild b/source/a/etc/etc.SlackBuild index 5db87ea7..0233a977 100755 --- a/source/a/etc/etc.SlackBuild +++ b/source/a/etc/etc.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2005-2012 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2005-2013 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -20,8 +20,8 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -VERSION=14.0 -BUILD=${BUILD:-1} +VERSION=14.1 +BUILD=${BUILD:-2} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -44,6 +44,10 @@ cd $PKG explodepkg $CWD/_etc.tar.gz # Fix for ARCH: sed -i -e "s#/i486-slackware-linux#/${ARCH}-slackware-linux#" etc/ld.so.conf.new +# Fix paths if lib64 is needed: +if [ "$ARCH" = "x86_64" ]; then + sed -i -e "s#/lib#/lib64#" etc/ld.so.conf.new +fi cp -a $CWD/termcap-BSD.gz etc/termcap-BSD.gz gzip -d --force etc/termcap-BSD.gz chown root:root etc/termcap-BSD |