Reputation: 4916
In a large Makefile managed project, I recently added some PHP generated targets and bash completion stopped working: pressing [tab] does not trigger completion, but inserts a tab character.
I isolated the issue to this minimal Makefile:
# TARGETS = $(echo target1 target2)
TARGETS = $(php -r 'echo "target1 target2";')
# TARGETS = $(python -c 'print "target1 target2"')
# TARGETS = $(ruby -e 'puts "target1 target2"')
$(TARGETS):
echo $@
If I use the bash-echo, python or ruby version of the TARGETS macro, bash completion works as expected, but if I use the php version bash completion becomes useless.
I can reproduce this issue on:
does anybody knows what is going wrong and what can be done about it?
Upvotes: 0
Views: 410
Reputation: 4916
Ok, did some more researching and googling and found an explanation an workaround at:
Apparently the readline support in PHP (PHP CLI with libedit compiled in for readline support on Ubuntu Lucid) causes the issue in some way (not analyzed by Paul Serby) and the workaround is to explicitly take control of the standard input of the PHP process.
For example:
TARGETS = $(php -r 'echo "target1 target2";' < /dev/null )
or
TARGETS = $(echo '' | php -r 'echo "target1 target2";' )
both solutions work on both platforms I tried.
Further references:
Upvotes: 1