about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorPaul Ackersviller <packersv@users.sourceforge.net>2007-12-11 00:13:03 +0000
committerPaul Ackersviller <packersv@users.sourceforge.net>2007-12-11 00:13:03 +0000
commitde6e73a6cae79e8ccb1fed2d50a2e5ba2cf1dac6 (patch)
treec28a1bd49a883010990d734817b6fa3f9651f5f7 /Completion
parent4736e253beca45aed88ef9a8d5225c7164208c45 (diff)
downloadzsh-de6e73a6cae79e8ccb1fed2d50a2e5ba2cf1dac6.tar.gz
zsh-de6e73a6cae79e8ccb1fed2d50a2e5ba2cf1dac6.tar.xz
zsh-de6e73a6cae79e8ccb1fed2d50a2e5ba2cf1dac6.zip
Merge of 24192 by Vincent Lefevre: make GNU make support -include.
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Command/_make6
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/Unix/Command/_make b/Completion/Unix/Command/_make
index 93d4b52da..95d7044e3 100644
--- a/Completion/Unix/Command/_make
+++ b/Completion/Unix/Command/_make
@@ -81,8 +81,8 @@ parseMakefile() {
 	    input=${input%%:*}
 	    print $(expandVars 10 $input)
 	    ;;
-	($incl *)
-	    local f=${input##$incl ##}
+	(${~incl} *)
+	    local f=${input##${~incl} ##}
 	    if [[ $incl = '.include' ]]; then
 		f=${f#[\"<]}
 		f=${f%[\">]}
@@ -125,7 +125,7 @@ findBasedir () {
 _pick_variant -r is_gnu gnu=GNU unix -v -f
 
 if [[ $is_gnu = gnu ]]; then
-    incl=include
+    incl="(-|)include"
 else
     incl=.include
 fi