From 434ce034e09651559f65662a95e08433d035ea50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Bergstr=C3=B6m?= Date: Tue, 6 Jan 2015 11:47:34 +1100 Subject: [PATCH] build: make dist now generates a full tarball MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Autotools tries to figure out what's necessary to create a tarball through included files in Makefile.am. Since libuv has conditionals based on target OS as well as additional samples/documentation, extra_files needs to include these. Also, add the result of make dist to gitignore. PR-URL: https://github.com/libuv/libuv/pull/118 Reviewed-By: Saúl Ibarra Corretgé --- .gitignore | 3 +++ Makefile.am | 19 ++++++++++++++++++- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e7f8f3f59..1eaaca840 100644 --- a/.gitignore +++ b/.gitignore @@ -67,3 +67,6 @@ ipch *.xcodeproj *.xcworkspace + +# make dist output +libuv-*.tar.* diff --git a/Makefile.am b/Makefile.am index c5b8a1fa8..e6af91d07 100644 --- a/Makefile.am +++ b/Makefile.am @@ -108,7 +108,24 @@ libuv_la_SOURCES += src/unix/async.c \ endif # WINNT EXTRA_DIST = test/fixtures/empty_file \ - test/fixtures/load_error.node + test/fixtures/load_error.node \ + include \ + test \ + docs \ + img \ + samples \ + android-configure \ + CONTRIBUTING.md \ + LICENSE \ + README.md \ + checksparse.sh \ + vcbuild.bat \ + Makefile.mingw \ + common.gypi \ + gyp_uv.py \ + uv.gyp + + TESTS = test/run-tests check_PROGRAMS = test/run-tests