From 6ea9d5d4bf5ce0fcea4395d82ddef7f5dc8d6097 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 7 Jan 2016 15:13:45 +1300 Subject: Variable assignments are not Makefile targets --- bash/bashrc.d/make.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bash/bashrc.d/make.bash b/bash/bashrc.d/make.bash index f4d0f5fd..d499649f 100644 --- a/bash/bashrc.d/make.bash +++ b/bash/bashrc.d/make.bash @@ -8,7 +8,7 @@ _make() { local -a targets tokens local line target token while read -r line ; do - if [[ $line == *:* ]] ; then + if [[ $line == *:* && $line != *:=* ]] ; then target=$line target=${target%%:*} target=${target% } -- cgit v1.2.3