We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5ecf98 commit c01c043Copy full SHA for c01c043
Makefile.frag
@@ -36,7 +36,7 @@ composer:
36
elif test -r composer.phar; then \
37
php composer.phar $(COMPOSER_ARGS); \
38
if test -d $(LIB_PATH); then \
39
- php composer.phar $(COMPOSER_ARGS) --working-dir $(LIB_PATH) ;\
+ php $(top_srcdir)/composer.phar $(COMPOSER_ARGS) --working-dir $(LIB_PATH) ;\
40
fi \
41
else \
42
echo "Cannot find composer :("; \
@@ -59,7 +59,7 @@ testunit: composer
59
popd ;\
60
elif test -r phpunit.phar; then \
61
pushd $(LIB_PATH) ;\
62
- php phpunit.phar $(PHPUNIT_ARGS) ;\
+ php $(top_srcdir)/phpunit.phar $(PHPUNIT_ARGS) ;\
63
64
65
echo "Cannot find phpunit :("; \
0 commit comments