From 24876c89dee017371442a72dc282a016f8a08758 Mon Sep 17 00:00:00 2001 From: Jeff Welch Date: Fri, 26 Apr 2013 22:20:20 -0400 Subject: [PATCH] Synced make target with aa399f2. --- .travis.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6493045..8451321 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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*||"` diff --git a/README.md b/README.md index ae39ad7..ffb6517 100644 --- a/README.md +++ b/README.md @@ -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