diff options
Diffstat (limited to 'Completion/Unix/Command/_make')
-rw-r--r-- | Completion/Unix/Command/_make | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_make b/Completion/Unix/Command/_make index f0d208837..e404d162d 100644 --- a/Completion/Unix/Command/_make +++ b/Completion/Unix/Command/_make @@ -193,7 +193,13 @@ else then parseMakefile $PWD < <(_call_program targets "$words[1]" -nsp --no-print-directory -f "$file" .PHONY 2> /dev/null) else - parseMakefile $PWD < $file + case "$OSTYPE" in + freebsd*) + parseMakefile $PWD < <(_call_program targets "$words[1]" -nsp -f "$file" .PHONY 2> /dev/null) + ;; + *) + parseMakefile $PWD < $file + esac fi fi |