mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-08 12:01:21 +02:00
Don't output make targets all clumped into a single string when useperl
is enabled.
This commit is contained in:
parent
7d3220f298
commit
9dd5252c9f
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ else
|
||||||
elif [[ -n $useperl ]]; then
|
elif [[ -n $useperl ]]; then
|
||||||
tmp=(
|
tmp=(
|
||||||
$(perl -ne '@matches = /^(?:([a-zA-Z0-9]+[^\/\t=\s]+)\s*)+:/ and
|
$(perl -ne '@matches = /^(?:([a-zA-Z0-9]+[^\/\t=\s]+)\s*)+:/ and
|
||||||
print join(" ", @matches);
|
print join(" ", @matches), "\n";
|
||||||
if (/^\.include\s+\<bsd\.port\.(subdir\.|pre\.)?mk>/ ||
|
if (/^\.include\s+\<bsd\.port\.(subdir\.|pre\.)?mk>/ ||
|
||||||
/^\.include\s+\".*mk\/bsd\.pkg\.(subdir\.)?mk\"/) {
|
/^\.include\s+\".*mk\/bsd\.pkg\.(subdir\.)?mk\"/) {
|
||||||
print "fetch fetch-list extract patch configure build install reinstall deinstall package describe checkpatch checksum makesum\n";
|
print "fetch fetch-list extract patch configure build install reinstall deinstall package describe checkpatch checksum makesum\n";
|
||||||
|
|
Loading…
Reference in a new issue