about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2007-12-10 18:05:04 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2007-12-10 18:05:04 +0000
commit72060c47b1ccb33b0c759a57ca909f6ee99ea062 (patch)
tree210eb7a9e84955f1059a67e476685b338ba8cad3 /Completion
parenta124da3a4a4bf6e91a567033e1e03241d9d0faa9 (diff)
downloadzsh-72060c47b1ccb33b0c759a57ca909f6ee99ea062.tar.gz
zsh-72060c47b1ccb33b0c759a57ca909f6ee99ea062.tar.xz
zsh-72060c47b1ccb33b0c759a57ca909f6ee99ea062.zip
Vincent Lefevre: 24192: make GNU make completion 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