From b5ce8cb195abdcadba279280aeff5e15c1c25d8e Mon Sep 17 00:00:00 2001 From: "dzzxzz@gmail.com" Date: Mon, 25 Jun 2012 03:50:04 +0000 Subject: [PATCH] correct the path for I2C device driver framework git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2181 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- components/drivers/i2c/SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/drivers/i2c/SConscript b/components/drivers/i2c/SConscript index 7a1d5dfe0..0607250da 100644 --- a/components/drivers/i2c/SConscript +++ b/components/drivers/i2c/SConscript @@ -11,7 +11,7 @@ if GetDepend('RT_USING_I2C_BITOPS'): src = src + ['i2c-bit-ops.c'] # The set of source files associated with this SConscript file. -path = [cwd] +path = [cwd + '/../include'] group = DefineGroup('DeviceDrivers', src, depend = ['RT_USING_I2C'], CPPPATH = path)