diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2009-11-24 15:46:54 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2009-11-24 15:46:54 +0000 |
commit | b7c0ab63f342ea97a8aa6cd14003b66e27f946f4 (patch) | |
tree | 8a381adf904b0787ce6cfc8b767964607967dd8e /Completion | |
parent | d81fb9f1a899e5b82814bf1f4fa488df91382bbf (diff) | |
download | zsh-b7c0ab63f342ea97a8aa6cd14003b66e27f946f4.tar.gz zsh-b7c0ab63f342ea97a8aa6cd14003b66e27f946f4.tar.xz zsh-b7c0ab63f342ea97a8aa6cd14003b66e27f946f4.zip |
Baptiste Daroussin: 27431: _make: fix for FreeBSD
Diffstat (limited to 'Completion')
-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 |