Skip to content

Commit 9a49615

Browse files
committed
Merge pull request #161 from sej7278/master
BUNDLED_AVR_TOOLS_DIR is now set correctly
2 parents 20b9774 + 1893199 commit 9a49615

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

Arduino.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ endif
354354

355355
ifndef AVR_TOOLS_DIR
356356

357-
BUNDLED_AVR_TOOLS_DIR ?= $(call dir_if_exists,$(ARDUINO_DIR)/hardware/tools/avr)
357+
BUNDLED_AVR_TOOLS_DIR := $(call dir_if_exists,$(ARDUINO_DIR)/hardware/tools/avr)
358358

359359
ifdef BUNDLED_AVR_TOOLS_DIR
360360
AVR_TOOLS_DIR = $(BUNDLED_AVR_TOOLS_DIR)

HISTORY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ A Makefile for Arduino Sketches
44
The following is the rough list of changes that went into different versions.
55
I tried to give credit whenever possible. If I have missed anyone, kindly add it to the list.
66

7+
### 1.3.1 (2014-02-01)
8+
- Fix: BUNDLED_AVR_TOOLS_DIR is now set properly when using only arduino-core and not the whole arduino package. (https://github.com/sej7278)
9+
710
### 1.3.0 (2014-01-29)
811
- Fix: Use more reliable serial device naming in Windows. Fix issue #139 and #155 (https://github.com/peplin)
912
- Fix: Document that ARDUINO_DIR must be a relative path in Windows. Fix issue #156 (https://github.com/peplin)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ It is possible to use [`colorgcc`](https://github.com/colorgcc/colorgcc) with th
119119

120120
## Versioning
121121

122-
The current version of the makefile is `1.3.0`. You can find the full history in the [HISTORY.md](HISTORY.md) file
122+
The current version of the makefile is `1.3.1`. You can find the full history in the [HISTORY.md](HISTORY.md) file
123123

124124
This project adheres to Semantic [Versioning 2.0](http://semver.org/).
125125

packaging/fedora/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ First install the dependencies as root:
66

77
From the top-level Arduino-Makefile directory you've checked out of github, run the following (as unprivileged user) to create a compressed tarball using the naming conventions required by rpmbuild:
88

9-
git archive HEAD --prefix=arduino-mk-1.3.0/ -o ../arduino-mk-1.3.0.tar.gz
9+
git archive HEAD --prefix=arduino-mk-1.3.1/ -o ../arduino-mk-1.3.1.tar.gz
1010

1111
If you don't already have a rpmbuild setup (e.g. you've not installed the SRPM) you will need to create the directories:
1212

1313
mkdir -p ~/rpmbuild/{SOURCES,SPECS}
1414

1515
Then copy the tarball and specfile into those directories:
1616

17-
cp ../arduino-mk-1.3.0.tar.gz ~/rpmbuild/SOURCES/
17+
cp ../arduino-mk-1.3.1.tar.gz ~/rpmbuild/SOURCES/
1818
cp packaging/fedora/arduino-mk.spec ~/rpmbuild/SPECS/
1919

2020
Then compile. This will create a binary and source RPM:

packaging/fedora/arduino-mk.spec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: arduino-mk
2-
Version: 1.3.0
2+
Version: 1.3.1
33
Release: 1%{dist}
44
Summary: Program your Arduino from the command line
55
Packager: Simon John <[email protected]>
@@ -51,6 +51,8 @@ rm -rf %{buildroot}
5151
%{_docdir}/%{name}/examples
5252

5353
%changelog
54+
* Sat Feb 01 2014 Simon John <[email protected]>
55+
- Updated version.
5456
* Mon Jan 13 2014 Simon John <[email protected]>
5557
- Removed arduino-mk subdirectory
5658
* Mon Dec 30 2013 Simon John <[email protected]>

0 commit comments

Comments
 (0)