From 1750ef08a47503f1ccd6e42b2d2d546dca88c132 Mon Sep 17 00:00:00 2001 From: Sudar Date: Sat, 5 May 2012 16:03:40 +0530 Subject: [PATCH] Prevent the *file-not-found* error if the depends.mk file is not needed --- arduino-mk/Arduino.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arduino-mk/Arduino.mk b/arduino-mk/Arduino.mk index 5261afa..125505b 100644 --- a/arduino-mk/Arduino.mk +++ b/arduino-mk/Arduino.mk @@ -690,4 +690,5 @@ monitor: .PHONY: all clean depends upload raw_upload reset reset_stty size show_boards monitor -include $(DEP_FILE) +# added - in the beginning, so that we don't get an error if the file is not present +-include $(DEP_FILE)