diff options
Diffstat (limited to 'python/plaso/plaso.SlackBuild')
-rw-r--r-- | python/plaso/plaso.SlackBuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/python/plaso/plaso.SlackBuild b/python/plaso/plaso.SlackBuild index 98cb38cd7b63..bff049ced2bc 100644 --- a/python/plaso/plaso.SlackBuild +++ b/python/plaso/plaso.SlackBuild @@ -1,7 +1,7 @@ #!/bin/sh # Slackware build script for plaso -# Copyright 2015 Barry Grundy <bgrundy[at]linuxleo.com> +# Copyright 2015-2016 Barry Grundy <bgrundy[at]linuxleo.com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -21,16 +21,16 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -# Initial Build version 1.2.0 February 2015 - Barry J. Grundy +# Updated Build version 1.4.0 August 2016 - Barry J. Grundy PRGNAM=plaso -VERSION=${VERSION:-1.2.0} +VERSION=${VERSION:-1.4.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -41,8 +41,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" |