Skip to content

Commit

Permalink
remove trailing slashes from RIOTBASE variables
Browse files Browse the repository at this point in the history
addresses #496 (comment)
  • Loading branch information
LudwigKnuepfer committed Jan 15, 2014
1 parent 498cc02 commit 57679f9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/ccn-lite-client/Makefile
Expand Up @@ -5,7 +5,7 @@ export PROJECT = ccn-lite-client
export BOARD ?= native

# This has to be the absolute path to the RIOT base directory:
export RIOTBASE ?= $(CURDIR)/../../
export RIOTBASE ?= $(CURDIR)/../..

# Uncomment these lines if you want to use platform support from external
# repositories:
Expand Down
2 changes: 1 addition & 1 deletion examples/ccn-lite-relay/Makefile
Expand Up @@ -5,7 +5,7 @@ export PROJECT = ccn-lite-relay
export BOARD ?= native

# This has to be the absolute path to the RIOT base directory:
export RIOTBASE ?= $(CURDIR)/../../
export RIOTBASE ?= $(CURDIR)/../..

# Uncomment these lines if you want to use platform support from external
# repositories:
Expand Down
2 changes: 1 addition & 1 deletion examples/default/Makefile
Expand Up @@ -5,7 +5,7 @@ export PROJECT = default
export BOARD ?= native

# This has to be the absolute path to the RIOT base directory:
export RIOTBASE ?= $(CURDIR)/../../
export RIOTBASE ?= $(CURDIR)/../..

# Uncomment these lines if you want to use platform support from external
# repositories:
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world/Makefile
Expand Up @@ -5,7 +5,7 @@ export PROJECT = hello-world
export BOARD ?= native

# This has to be the absolute path to the RIOT base directory:
export RIOTBASE ?= $(CURDIR)/../../
export RIOTBASE ?= $(CURDIR)/../..

# Change this to 0 show compiler invocation lines by default:
export QUIET ?= 1
Expand Down
2 changes: 1 addition & 1 deletion examples/ipc_pingpong/Makefile
Expand Up @@ -5,7 +5,7 @@ export PROJECT = ipc_pingpong
export BOARD ?= native

# This has to be the absolute path to the RIOT base directory:
export RIOTBASE ?= $(CURDIR)/../../
export RIOTBASE ?= $(CURDIR)/../..

# Change this to 0 show compiler invocation lines by default:
export QUIET ?= 1
Expand Down
2 changes: 1 addition & 1 deletion examples/rpl_udp/Makefile
Expand Up @@ -5,7 +5,7 @@ export PROJECT = rpl_udp
export BOARD ?= native

# This has to be the absolute path to the RIOT base directory:
export RIOTBASE ?= $(CURDIR)/../../
export RIOTBASE ?= $(CURDIR)/../..

# Uncomment these lines if you want to use platform support from external
# repositories:
Expand Down

0 comments on commit 57679f9

Please sign in to comment.