mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
493 B
21 lines
493 B
6 years ago
|
#! /bin/sh
|
||
|
export PATH=$PATH:/opt/local/bin:/opt/local/sbin:/opt/local/share/man:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/X11/bin
|
||
|
DIR=$(cd "$(dirname "$0")"; pwd)
|
||
|
|
||
|
|
||
|
PHP_VER=53
|
||
|
echo "php${PHP_VER} -- start"
|
||
|
cmd_ext=$(ls -l $DIR/versions/$PHP_VER/ |awk '{print $9}')
|
||
|
cd $DIR/versions/$PHP_VER && sh install.sh
|
||
|
for ii in $cmd_ext
|
||
|
do
|
||
|
if [ "install.sh" == "$ii" ];then
|
||
|
echo ''
|
||
|
else
|
||
|
cd $DIR/versions/$PHP_VER && /bin/bash $ii install $PHP_VER
|
||
|
fi
|
||
|
done
|
||
|
echo "php${PHP_VER} -- end"
|
||
|
|
||
|
|