Skip to content

Commit 780319d

Browse files
xhaihaoXinfengZhang
authored andcommitted
Include .h for extra dist
Otherwise the package made by 'make dist' fails to build with similar errors below: CC avcstreamoutdemo.o avcstreamoutdemo.c:46:10: fatal error: avcstreamoutdemo.h: No such file or directory #include "avcstreamoutdemo.h" ^~~~~~~~~~~~~~~~~~~~ compilation terminated. Makefile:456: recipe for target 'avcstreamoutdemo.o' failed make[1]: *** [avcstreamoutdemo.o] Error 1 Signed-off-by: Haihao Xiang <[email protected]>
1 parent 76df446 commit 780319d

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

vendor/intel/Makefile.am

+4
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,7 @@ valgrind: $(bin_PROGRAMS)
4242
for a in $(bin_PROGRAMS); do \
4343
valgrind --leak-check=full --show-reachable=yes .libs/$$a; \
4444
done
45+
46+
EXTRA_DIST = \
47+
avcstreamoutdemo.h \
48+
$(NULL)

vendor/intel/sfcsample/Makefile.am

+4-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,7 @@ valgrind:$(bin_PROGRAMS)
5252
valgrind --leak-check=full --show-reachable=yes .libs/$$a; \
5353
done
5454

55-
55+
EXTRA_DIST = \
56+
VDecAccelVA.h \
57+
DecodeParamBuffer.h \
58+
$(NULL)

0 commit comments

Comments
 (0)