diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2004-08-18 17:10:27 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2004-08-18 17:10:27 +0000 |
commit | 9dd5252c9fcdb22c1246c8a8943083e0317fdc2e (patch) | |
tree | 6f309a33fa11f23c26f7404d96692a986cbfea8f /Completion/Unix/Command | |
parent | 7d3220f2981c81dbd3cbde873c1bb4d540c92574 (diff) | |
download | zsh-9dd5252c9fcdb22c1246c8a8943083e0317fdc2e.tar.gz zsh-9dd5252c9fcdb22c1246c8a8943083e0317fdc2e.tar.xz zsh-9dd5252c9fcdb22c1246c8a8943083e0317fdc2e.zip |
Don't output make targets all clumped into a single string when useperl
is enabled.
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_make b/Completion/Unix/Command/_make index 07a80a96e..bbc757fbd 100644 --- a/Completion/Unix/Command/_make +++ b/Completion/Unix/Command/_make @@ -35,7 +35,7 @@ else elif [[ -n $useperl ]]; then tmp=( $(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>/ || /^\.include\s+\".*mk\/bsd\.pkg\.(subdir\.)?mk\"/) { print "fetch fetch-list extract patch configure build install reinstall deinstall package describe checkpatch checksum makesum\n"; |