diff options
author | Martin Szulecki | 2014-10-03 16:17:04 +0200 |
---|---|---|
committer | Martin Szulecki | 2014-10-03 16:29:42 +0200 |
commit | 2fe46acbbbdb93d919a1aeb435ea1e4db160f5e1 (patch) | |
tree | 0949e8b87fcb1a88fc2d31b3065a0a125a2823ad | |
parent | 890638f41881965e4aebe3bee78cb74ee7b0cf36 (diff) | |
download | libimobiledevice-2fe46acbbbdb93d919a1aeb435ea1e4db160f5e1.tar.gz libimobiledevice-2fe46acbbbdb93d919a1aeb435ea1e4db160f5e1.tar.bz2 |
common: Fix distcheck target
-rw-r--r-- | common/Makefile.am | 2 | ||||
-rw-r--r-- | common/debug.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/Makefile.am b/common/Makefile.am index eb1db28..a79094b 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -1,4 +1,4 @@ -AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src +AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir) AM_CFLAGS = $(GLOBAL_CFLAGS) $(libusbmuxd_CFLAGS) $(libplist_CFLAGS) $(LFS_CFLAGS) AM_LDFLAGS = $(libusbmuxd_LIBS) $(libplist_LIBS) ${libpthread_LIBS} diff --git a/common/debug.c b/common/debug.c index a7e33df..e497501 100644 --- a/common/debug.c +++ b/common/debug.c @@ -32,8 +32,8 @@ #include <time.h> #include "debug.h" -#include "idevice.h" #include "libimobiledevice/libimobiledevice.h" +#include "src/idevice.h" #ifndef STRIP_DEBUG_CODE #include "asprintf.h" |