diff options
author | Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com> | 2015-05-13 11:54:01 +0200 |
---|---|---|
committer | Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com> | 2015-05-13 15:21:07 +0200 |
commit | ef7dc4eaf6067f5086f43e1000f200d67004803c (patch) | |
tree | df07db9e00974212803e27537e55f9e83131c2d2 /tests | |
parent | ae95a72dd1d4ecb17c5ccf91b5bda7217d370b8c (diff) |
build: fix make distcheck
This patch fixes several issues found when running the `make distcheck`
target:
- In commit c561b8da, the update of gstcompat.h in Makefile.am was
forgotten.
- In commit c5756a91 add the simple_encoder_source_h in EXTRA_DIST was
forgotten.
- vpx.build.stamp is not generated at all, only vpx.configure.stamp.
- The make target distcleancheck failed because some autogenerated files
were not handled with the DISTCLEANFILES variable.
Note: `make distcheck -jXX` is not currently supported.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index fa1ee3a4..a852f409 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -132,6 +132,7 @@ simple_encoder_LDADD = libutils.la $(TEST_LIBS) $(GST_VIDEO_LIBS) EXTRA_DIST = \ test-subpicture-data.h \ $(simple_decoder_source_h) \ + $(simple_encoder_source_h) \ $(test_utils_dec_source_h) \ $(test_utils_source_h) \ $(NULL) |