安装文件优化

This commit is contained in:
Mr Chen 2019-03-07 18:59:26 +08:00
parent 63a6397452
commit 043be152c9
1 changed files with 10 additions and 0 deletions

View File

@ -56,6 +56,7 @@ cd $sourcePath/php/php-5.3.29 && ./configure \
--enable-mysqlnd \
--without-iconv \
--enable-zip \
--enable-sockets \
--enable-mbstring \
--enable-ftp \
--enable-wddx \
@ -64,6 +65,15 @@ cd $sourcePath/php/php-5.3.29 && ./configure \
--enable-fpm \
&& make && make install && make clean
if [ -f $serverPath/php/53/bin/php.dSYM ];then
mv $serverPath/php/53/bin/php.dSYM $serverPath/php/53/bin/php
fi
if [ -f $serverPath/php/53/sbin/php-fpm.dSYM ];then
mv $serverPath/php/53/sbin/php-fpm.dSYM $serverPath/php/53/sbin/php-fpm
fi
#------------------------ install end ------------------------------------#
}