net: Fix the include paths in Contiki sources

Fix the include paths in Contiki sources so that we do not
have to create links to include directories during compilation.

Change-Id: I9316f1e90474e0ee563557deadd0bdc321cbb0fa
Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
Jukka Rissanen 2015-11-04 21:37:31 +02:00 committed by Anas Nashif
commit 0179583391
109 changed files with 274 additions and 277 deletions

View file

@ -73,12 +73,12 @@
#include <net/ip_buf.h>
#include "net/ip/uip.h"
#include "net/ip/uipopt.h"
#include "net/ipv6/uip-icmp6.h"
#include "net/ipv6/uip-nd6.h"
#include "net/ipv6/uip-ds6.h"
#include "net/ipv6/multicast/uip-mcast6.h"
#include "contiki/ip/uip.h"
#include "contiki/ip/uipopt.h"
#include "contiki/ipv6/uip-icmp6.h"
#include "contiki/ipv6/uip-nd6.h"
#include "contiki/ipv6/uip-ds6.h"
#include "contiki/ipv6/multicast/uip-mcast6.h"
#include <string.h>
@ -87,7 +87,7 @@
/*---------------------------------------------------------------------------*/
#define DEBUG DEBUG_FULL
#include "net/ip/uip-debug.h"
#include "contiki/ip/uip-debug.h"
#if UIP_CONF_IPV6_RPL
#include "rpl/rpl.h"