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 /gst-libs | |
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 'gst-libs')
-rw-r--r-- | gst-libs/gst/vaapi/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/vaapi/Makefile.am b/gst-libs/gst/vaapi/Makefile.am index 4c3551e6..bb0123b6 100644 --- a/gst-libs/gst/vaapi/Makefile.am +++ b/gst-libs/gst/vaapi/Makefile.am @@ -118,7 +118,6 @@ libgstvaapi_source_h = \ libgstvaapi_source_priv_h = \ glibcompat.h \ - gstcompat.h \ gstvaapibufferproxy_priv.h \ gstvaapicodec_objects.h \ gstvaapicompat.h \ @@ -574,6 +573,7 @@ $(PKG_VERSION_FILE): $(NEW_VERSION_FILE) BUILT_SOURCES = gstvaapiversion.h EXTRA_DIST = gstvaapiversion.h.in $(PKG_VERSION_FILE) +DISTCLEANFILES = $(BUILT_SOURCES) EXTRA_DIST += \ $(libgstvaapi_enc_source_c) \ |