Skip to content

Commit c01c043

Browse files
committed
Fix paths to root dir .phar
1 parent d5ecf98 commit c01c043

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.frag

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ composer:
3636
elif test -r composer.phar; then \
3737
php composer.phar $(COMPOSER_ARGS); \
3838
if test -d $(LIB_PATH); then \
39-
php composer.phar $(COMPOSER_ARGS) --working-dir $(LIB_PATH) ;\
39+
php $(top_srcdir)/composer.phar $(COMPOSER_ARGS) --working-dir $(LIB_PATH) ;\
4040
fi \
4141
else \
4242
echo "Cannot find composer :("; \
@@ -59,7 +59,7 @@ testunit: composer
5959
popd ;\
6060
elif test -r phpunit.phar; then \
6161
pushd $(LIB_PATH) ;\
62-
php phpunit.phar $(PHPUNIT_ARGS) ;\
62+
php $(top_srcdir)/phpunit.phar $(PHPUNIT_ARGS) ;\
6363
popd ;\
6464
else \
6565
echo "Cannot find phpunit :("; \

0 commit comments

Comments
 (0)