aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Berger <j.david.berger@gmail.com>2018-03-12 18:14:43 -0600
committerJustin Berger <j.david.berger@gmail.com>2018-03-12 18:14:43 -0600
commit94521a2e703ecd5009c5c1e7796ea529a40a67fc (patch)
treeb736aef12d1d1a78206c13abaa508aff804313a6
parent25e2a51446f63883dc1620e25559bd2e2b528df2 (diff)
downloadlibsurvive-94521a2e703ecd5009c5c1e7796ea529a40a67fc.tar.gz
libsurvive-94521a2e703ecd5009c5c1e7796ea529a40a67fc.tar.bz2
Changed include to not have 'redist'
-rw-r--r--Makefile2
-rw-r--r--src/survive_playback.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b9cfbdc..c2aba18 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ all : lib data_recorder test calibrate calibrate_client simple_pose_test
CC:=gcc
-CFLAGS:=-Iinclude/libsurvive -I. -fPIC -g -O3 -Iredist -flto -DUSE_DOUBLE -std=gnu99 -rdynamic
+CFLAGS:=-Iinclude/libsurvive -fPIC -g -O3 -Iredist -flto -DUSE_DOUBLE -std=gnu99 -rdynamic
#LDFLAGS:=-L/usr/local/lib -lpthread -lusb-1.0 -lz -lm -flto -g
LDFLAGS:=-L/usr/local/lib -lpthread -lz -lm -flto -g
diff --git a/src/survive_playback.c b/src/survive_playback.c
index 4b25b4c..fe7af2b 100644
--- a/src/survive_playback.c
+++ b/src/survive_playback.c
@@ -11,7 +11,7 @@
#include "survive_config.h"
#include "survive_default_devices.h"
-#include "redist/os_generic.h"
+#include "os_generic.h"
struct SurvivePlaybackData {
SurviveContext *ctx;