diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-06 07:07:26 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-01-09 07:12:22 +0700 |
commit | dfc3c3b4b1c57bb2c33605a85be2b753d2583a37 (patch) | |
tree | f40bb0e210bd9548f26ba9898f0bb9aa112f0cc3 /libraries/php-pdo_dblib/php-pdo_dblib.SlackBuild | |
parent | 4a2ee1d48c97627cdc726ca1bfe409aab81ce9ac (diff) | |
download | slackbuilds-dfc3c3b4b1c57bb2c33605a85be2b753d2583a37.tar.gz |
libraries/php-pdo_dblib: Updated for version 5.4.45.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/php-pdo_dblib/php-pdo_dblib.SlackBuild')
-rw-r--r-- | libraries/php-pdo_dblib/php-pdo_dblib.SlackBuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libraries/php-pdo_dblib/php-pdo_dblib.SlackBuild b/libraries/php-pdo_dblib/php-pdo_dblib.SlackBuild index 50fcd40c5a..58f164e326 100644 --- a/libraries/php-pdo_dblib/php-pdo_dblib.SlackBuild +++ b/libraries/php-pdo_dblib/php-pdo_dblib.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=php-pdo_dblib -VERSION=5.4.13 +VERSION=${VERSION:-5.4.45} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -66,10 +66,10 @@ tar xvf $CWD/$SRCNAM-$VERSION.tar.bz2 cd $SRCNAM-$VERSION chown -R root:root . 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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -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 {} \; cd ext/pdo_dblib/ @@ -99,7 +99,7 @@ make install DESTDIR=$PKG EXTENSION_DIR=$EXTENSION_DIR install -m 644 $CWD/pdo_dblib.ini $PKG/etc/php/pdo_dblib.ini.new -find $PKG | xargs file | grep -e "executable" -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 |