diff options
Diffstat (limited to 'libraries/zend-opcache/zend-opcache.SlackBuild')
-rw-r--r-- | libraries/zend-opcache/zend-opcache.SlackBuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libraries/zend-opcache/zend-opcache.SlackBuild b/libraries/zend-opcache/zend-opcache.SlackBuild index ab75f7c7faf23..7775b198e3f36 100644 --- a/libraries/zend-opcache/zend-opcache.SlackBuild +++ b/libraries/zend-opcache/zend-opcache.SlackBuild @@ -1,8 +1,8 @@ #!/bin/sh -# SlackBuild script for "zend-opcache". +# Slackware build script for "zend-opcache". -# Copyright 2013-2014 Marcel Saegebarth <marc@mos6581.de> +# Copyright 2013-2015 Marcel Saegebarth <marc@mos6581.de> # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -26,7 +26,7 @@ PRGNAM=zend-opcache SRCNAM=zendopcache -VERSION=${VERSION:-7.0.3} +VERSION=${VERSION:-7.0.4} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -70,7 +70,7 @@ find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ -o -perm 511 \) -exec chmod 755 {} \; -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; phpize CFLAGS="$SLKCFLAGS" \ @@ -88,7 +88,7 @@ CXXFLAGS="$SLKCFLAGS" \ make make install-modules INSTALL_ROOT=$PKG -find $PKG | xargs file | grep -e "shared object" | grep ELF \ +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |