aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthijs Kooijman <matthijs@stdin.nl>2013-06-14 12:45:14 +0200
committerMatthijs Kooijman <matthijs@stdin.nl>2013-06-14 12:49:12 +0200
commitffdfa7d170ec674e19bded98e7b4974aa52feff7 (patch)
tree0f568f14899cd21489c32dd032c96ddf911a16bd
parent9b38631d61df66afd58279c71df560ac698d1b87 (diff)
Don't indent variable assignments with tabs
This causes make to consider the line part of the preceding recipe, causing the variable to remain unset and the preceding recipe to break. In this case, this was the recipe for user libraries with .c files, which is uncommon enough for this to go unnoticed. This was broken in 3bce1d88 (Allow adding extra common dependencies).
-rw-r--r--arduino-mk/Arduino.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/arduino-mk/Arduino.mk b/arduino-mk/Arduino.mk
index 17d565e..f8ac95c 100644
--- a/arduino-mk/Arduino.mk
+++ b/arduino-mk/Arduino.mk
@@ -721,9 +721,9 @@ $(OBJDIR)/libs/%.o: $(USER_LIB_PATH)/%.c
$(CC) -MMD -c $(CPPFLAGS) $(CFLAGS) $< -o $@
ifdef COMMON_DEPS
- COMMON_DEPS := $(COMMON_DEPS) Makefile
+ COMMON_DEPS := $(COMMON_DEPS) Makefile
else
- COMMON_DEPS := Makefile
+ COMMON_DEPS := Makefile
endif
# normal local sources