Skip to content

Commit

Permalink
fix oonf_api build with GNU Make 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benpicco committed Mar 17, 2014
1 parent deba9f3 commit 8a0f5be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/oonf_api/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PKG_NAME=oonf_api
PKG_URL=git://olsr.org/oonf_api.git
PKG_VERSION=v0.3.0
PKG_NAME:=oonf_api
PKG_URL:=git://olsr.org/oonf_api.git
PKG_VERSION:=v0.3.0

ifneq ($(RIOTBOARD),)
include $(RIOTBOARD)/$(BOARD)/Makefile.include
Expand Down

2 comments on commit 8a0f5be

@Kijewski
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't understand how the content of the diff relates to the title.
Values set with := will be evaluated eagerly, = gets evaluated once (and every time) it is used.
Since you don't have any $(...) in here, both operators should behave the same.

@benpicco
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is a $(…) further down the Makefile, it can't find the target $(CURDIR)/$(PKG_NAME) otherwise

Please sign in to comment.