diff options
author | Willy Sudiarto Raharjo <willysr@gmail.com> | 2012-09-17 08:20:14 +0700 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-16 23:09:36 -0500 |
commit | cba9b159ef0c70f6aa7622a49852e6ed9014c28b (patch) | |
tree | 4ad4234a13af7654b50e6e5d93211e334a4f53a3 /system/pax/pax.SlackBuild | |
parent | ecafd17f33651693b93c4648f76c89641ab1fe8f (diff) | |
download | slackbuilds-cba9b159ef0c70f6aa7622a49852e6ed9014c28b.tar.gz |
system/pax: Fixed compile error.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/pax/pax.SlackBuild')
-rw-r--r-- | system/pax/pax.SlackBuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/system/pax/pax.SlackBuild b/system/pax/pax.SlackBuild index af3a8501d9..8a6285ffe9 100644 --- a/system/pax/pax.SlackBuild +++ b/system/pax/pax.SlackBuild @@ -1,4 +1,6 @@ #!/bin/sh +# SlackBuild Script for Pax + # Copyright (c) 2006 Eric Hameleers <alien@sox.homeip.net> # Distributed under the terms of the GNU General Public License, Version 2 # ----------------------------------------------------------------------------- @@ -8,7 +10,9 @@ # By: Eric Hameleers <alien@slackware.com> # For: pax # Changelog: -# 3.4-2: 30/Nov/2008 by Ben Collver <bencollver@gmail.com> +# 3.4-2: 17/Sep/2012 by Willy Sudiarto Raharjo <willysr@slackware-id.org> +# * Fix build on Slackware 14.0 +# 3.4-1: 30/Nov/2008 by Ben Collver <bencollver@gmail.com> # * removed logging # * removed installwatch # * added gpl-2.0.txt @@ -21,7 +25,7 @@ PRGNAM=pax VERSION=${VERSION:-3.4} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} # Automatically determine the architecture we're building on: @@ -68,7 +72,7 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -CFLAGS="$SLKCFLAGS" \ +CFLAGS="$SLKCFLAGS -Wno-error" \ ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ |