Merge pull request #47 from whatthejeff/fix-make-target

Synced make target with aa399f2.
This commit is contained in:
Shuhei Tanuma 2013-08-28 22:34:15 -07:00
commit 892dd54f3b
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ php:
- 5.4
before_script:
- cd libuv && make libuv.a CFLAGS=-fPIC -s && cd ..
- cd libuv && make uv.a CFLAGS=-fPIC -s && cd ..
- phpize && ./configure && make && sudo make install
- echo "extension=uv.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`

View File

@ -15,7 +15,7 @@ or move to extension all together so do not rely to much on them you have been w
git clone https://github.com/chobie/php-uv.git --recursive
cd php-uv
(cd libuv && make)
# Note: please use `make libuv.a CFLAGS=-fPIC` instead of `make` on 64bit box.
# Note: please use `make uv.a CFLAGS=-fPIC` instead of `make` on 64bit box.
phpize
./configure
make