diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-09-14 12:11:00 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-09-14 12:11:00 -0300 |
commit | e4ca59846517e6ad180d0cbe67374b0a74572eb9 (patch) | |
tree | 24e58aa7ee43fb0f7f8cb7db7081b83813374088 | |
parent | 0507dace6a34e81eb38c72f25bc531510bb5e269 (diff) |
decode_tm6000: fix build
The build for this ancillary utility has broken after moved to
contrib/. Fix it.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
-rw-r--r-- | contrib/decode_tm6000/Makefile.am | 2 | ||||
-rw-r--r-- | contrib/decode_tm6000/decode_tm6000.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/decode_tm6000/Makefile.am b/contrib/decode_tm6000/Makefile.am index ac4e85e5..863933cc 100644 --- a/contrib/decode_tm6000/Makefile.am +++ b/contrib/decode_tm6000/Makefile.am @@ -1,4 +1,4 @@ bin_PROGRAMS = decode_tm6000 decode_tm6000_SOURCES = decode_tm6000.c -decode_tm6000_LDADD = ../libv4l2util/libv4l2util.la +decode_tm6000_LDADD = ../../utils/libv4l2util/libv4l2util.la decode_tm6000_LDFLAGS = $(ARGP_LIBS) diff --git a/contrib/decode_tm6000/decode_tm6000.c b/contrib/decode_tm6000/decode_tm6000.c index 4bffbdd6..219fde7b 100644 --- a/contrib/decode_tm6000/decode_tm6000.c +++ b/contrib/decode_tm6000/decode_tm6000.c @@ -16,7 +16,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA. */ -#include "../libv4l2util/v4l2_driver.h" +#include "../utils/libv4l2util/v4l2_driver.h" #include <stdio.h> #include <string.h> #include <argp.h> |