From a58062611e44e8f86f3fe07c8d85667ebddb7159 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Thu, 14 Aug 2014 12:14:40 -0400 Subject: [PATCH] MakefileExample: Fix AVR_TOOLS_DIR default Judging by the default for OS X directly above it and the fact that the current default doesn't work, it seems this should not include the `/bin`. --- examples/MakefileExample/Makefile-example.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/MakefileExample/Makefile-example.mk b/examples/MakefileExample/Makefile-example.mk index 964f9de..67e83e3 100644 --- a/examples/MakefileExample/Makefile-example.mk +++ b/examples/MakefileExample/Makefile-example.mk @@ -36,7 +36,7 @@ MONITOR_BAUDRATE = 115200 ### On OS X with `homebrew`: AVR_TOOLS_DIR = /usr/local ### or on Linux: (remove the one you don't want) -AVR_TOOLS_DIR = /usr/bin +AVR_TOOLS_DIR = /usr ### AVRDDUDE ### Path to avrdude directory.