aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash')
-rw-r--r--bash/bashrc.d/make.bash2
1 files changed, 1 insertions, 1 deletions
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% }