Message ID | 1469106764-19411-3-git-send-email-andreas.boll.dev@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 21 July 2016 at 14:12, Andreas Boll <andreas.boll.dev@gmail.com> wrote: > Currently only some Android Makefiles are included in the release tarball. > Add all remaining files to be more consistent. > Since Android folk never fully bought the idea of using actual releases/release tarballs, one could just drop all the existing Android.mk instances from the Makefiles. If the Debian build system warnings about files not included in the tarball go ahead with this patch. Thanks Emil
2016-07-21 18:14 GMT+02:00 Emil Velikov <emil.l.velikov@gmail.com>: > On 21 July 2016 at 14:12, Andreas Boll <andreas.boll.dev@gmail.com> wrote: >> Currently only some Android Makefiles are included in the release tarball. >> Add all remaining files to be more consistent. >> > Since Android folk never fully bought the idea of using actual > releases/release tarballs, one could just drop all the existing > Android.mk instances from the Makefiles. Ok I've just sent a new patch to drop all Android files from the release tarball. > > If the Debian build system warnings about files not included in the > tarball go ahead with this patch. > No problem, I'll just extend the ignore rule like I did for mesa. Thanks, Andreas
diff --git a/Makefile.am b/Makefile.am index feecba7..dce2cf6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -120,7 +120,7 @@ libdrm_la_SOURCES = $(LIBDRM_FILES) libdrmincludedir = ${includedir} libdrminclude_HEADERS = $(LIBDRM_H_FILES) -EXTRA_DIST = Android.mk +EXTRA_DIST = CleanSpec.mk Android.mk klibdrmincludedir = ${includedir}/libdrm klibdrminclude_HEADERS = $(LIBDRM_INCLUDE_H_FILES) diff --git a/amdgpu/Makefile.am b/amdgpu/Makefile.am index cf7bc1b..169788f 100644 --- a/amdgpu/Makefile.am +++ b/amdgpu/Makefile.am @@ -44,4 +44,4 @@ pkgconfigdir = @pkgconfigdir@ pkgconfig_DATA = libdrm_amdgpu.pc TESTS = amdgpu-symbol-check -EXTRA_DIST = $(TESTS) +EXTRA_DIST = Android.mk $(TESTS) diff --git a/tests/Makefile.am b/tests/Makefile.am index 58feb12..33a1d42 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -73,3 +73,5 @@ TESTS += \ endif check_PROGRAMS += $(TESTS) + +EXTRA_DIST = Android.mk diff --git a/tests/proptest/Makefile.am b/tests/proptest/Makefile.am index 3fde46b..6b7ae7c 100644 --- a/tests/proptest/Makefile.am +++ b/tests/proptest/Makefile.am @@ -19,3 +19,5 @@ proptest_SOURCES = $(PROPTEST_FILES) proptest_LDADD = \ $(top_builddir)/libdrm.la \ $(top_builddir)/tests/util/libutil.la + +EXTRA_DIST = Android.mk diff --git a/tests/util/Makefile.am b/tests/util/Makefile.am index f8e0b17..92acfb3 100644 --- a/tests/util/Makefile.am +++ b/tests/util/Makefile.am @@ -11,3 +11,5 @@ libutil_la_CFLAGS = \ $(CAIRO_CFLAGS) libutil_la_SOURCES = $(UTIL_FILES) + +EXTRA_DIST = Android.mk
Currently only some Android Makefiles are included in the release tarball. Add all remaining files to be more consistent. Signed-off-by: Andreas Boll <andreas.boll.dev@gmail.com> --- Makefile.am | 2 +- amdgpu/Makefile.am | 2 +- tests/Makefile.am | 2 ++ tests/proptest/Makefile.am | 2 ++ tests/util/Makefile.am | 2 ++ 5 files changed, 8 insertions(+), 2 deletions(-)