look for project header in project path and not in system one
authorPhilippe Coval <philippe.coval@osg.samsung.com>
Tue, 8 Mar 2016 11:00:52 +0000 (12:00 +0100)
committerHabib Virji <habib.virji@samsung.com>
Wed, 30 Mar 2016 09:31:32 +0000 (09:31 +0000)
Use #include "..." vs #include <...>
as some compilers are making the difference

This was observed when building outside main project

This message appeared while building using tizen-sdk 2.4.0 Rev4
with imported libs (built with gbs from Tizen:2.4:Mobile repo)

Change-Id: Ic89a700bf9c2b9b10c739d5706ac9b3f742b210d
Signed-off-by: Philippe Coval <philippe.coval@osg.samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/6143
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Sanjeev BA <as2902.b@samsung.com>
Reviewed-by: Ziran Sun <ziran.sun@samsung.com>
resource/src/OCUtilities.cpp

index f0e606e..a2dd893 100644 (file)
@@ -18,9 +18,9 @@
 //
 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 
-#include <OCApi.h>
+#include "OCApi.h"
 
-#include <OCUtilities.h>
+#include "OCUtilities.h"
 
 #include <boost/algorithm/string.hpp>