Repository: arrow Updated Branches: refs/heads/master 02bdbf48a -> 6cd82c2a2
ARROW-671: [GLib] Install missing license file Author: Kouhei Sutou <[email protected]> Closes #406 from kou/glib-install-missing-license-file and squashes the following commits: 8e452d4 [Kouhei Sutou] [GLib] Install missing license file Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/6cd82c2a Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/6cd82c2a Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/6cd82c2a Branch: refs/heads/master Commit: 6cd82c2a294562d1d16a4767b32f072056f396a3 Parents: 02bdbf4 Author: Kouhei Sutou <[email protected]> Authored: Mon Mar 20 17:55:56 2017 +0100 Committer: Uwe L. Korn <[email protected]> Committed: Mon Mar 20 17:55:56 2017 +0100 ---------------------------------------------------------------------- c_glib/.gitignore | 1 + c_glib/Makefile.am | 6 ++++++ c_glib/autogen.sh | 2 ++ 3 files changed, 9 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/6cd82c2a/c_glib/.gitignore ---------------------------------------------------------------------- diff --git a/c_glib/.gitignore b/c_glib/.gitignore index 38e33a2..e57a059 100644 --- a/c_glib/.gitignore +++ b/c_glib/.gitignore @@ -8,6 +8,7 @@ Makefile.in *.lo *.la *~ +/LICENSE.txt /*.tar.gz /aclocal.m4 /autom4te.cache/ http://git-wip-us.apache.org/repos/asf/arrow/blob/6cd82c2a/c_glib/Makefile.am ---------------------------------------------------------------------- diff --git a/c_glib/Makefile.am b/c_glib/Makefile.am index 076f9be..c078b08 100644 --- a/c_glib/Makefile.am +++ b/c_glib/Makefile.am @@ -23,4 +23,10 @@ SUBDIRS = \ example EXTRA_DIST = \ + README.md \ + LICENSE.txt \ version + +doc_DATA = \ + README.md \ + LICENSE.txt http://git-wip-us.apache.org/repos/asf/arrow/blob/6cd82c2a/c_glib/autogen.sh ---------------------------------------------------------------------- diff --git a/c_glib/autogen.sh b/c_glib/autogen.sh index 08e33e6..6e2036d 100755 --- a/c_glib/autogen.sh +++ b/c_glib/autogen.sh @@ -25,6 +25,8 @@ ruby \ ../java/pom.xml > \ version +cp ../LICENSE.txt ./ + mkdir -p m4 gtkdocize --copy --docdir doc/reference
