From 57679f90dc228d258f131b7921f4e676fe9e8eb9 Mon Sep 17 00:00:00 2001 From: Ludwig Ortmann Date: Wed, 15 Jan 2014 17:26:10 +0100 Subject: [PATCH] remove trailing slashes from RIOTBASE variables addresses https://github.com/RIOT-OS/RIOT/pull/496#issuecomment-32170092 --- examples/ccn-lite-client/Makefile | 2 +- examples/ccn-lite-relay/Makefile | 2 +- examples/default/Makefile | 2 +- examples/hello-world/Makefile | 2 +- examples/ipc_pingpong/Makefile | 2 +- examples/rpl_udp/Makefile | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/ccn-lite-client/Makefile b/examples/ccn-lite-client/Makefile index c440479e6c..987d06bcbe 100644 --- a/examples/ccn-lite-client/Makefile +++ b/examples/ccn-lite-client/Makefile @@ -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: diff --git a/examples/ccn-lite-relay/Makefile b/examples/ccn-lite-relay/Makefile index 56e8c23789..4c0e61113f 100644 --- a/examples/ccn-lite-relay/Makefile +++ b/examples/ccn-lite-relay/Makefile @@ -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: diff --git a/examples/default/Makefile b/examples/default/Makefile index 64c85060bd..4dd2c77759 100644 --- a/examples/default/Makefile +++ b/examples/default/Makefile @@ -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: diff --git a/examples/hello-world/Makefile b/examples/hello-world/Makefile index e09d751a26..0b98fa9590 100644 --- a/examples/hello-world/Makefile +++ b/examples/hello-world/Makefile @@ -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 diff --git a/examples/ipc_pingpong/Makefile b/examples/ipc_pingpong/Makefile index 4597db46a5..53c54937ab 100644 --- a/examples/ipc_pingpong/Makefile +++ b/examples/ipc_pingpong/Makefile @@ -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 diff --git a/examples/rpl_udp/Makefile b/examples/rpl_udp/Makefile index b0376da04a..96dd0621a5 100644 --- a/examples/rpl_udp/Makefile +++ b/examples/rpl_udp/Makefile @@ -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: