[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
COPYING in repository
From: |
Eric Blake |
Subject: |
COPYING in repository |
Date: |
Wed, 26 Nov 2008 18:03:22 +0000 (UTC) |
User-agent: |
Loom/3.14 (http://gmane.org/) |
Now that automake 1.10.2 is released, ./bootstrap results in a warning:
Makefile.am: installing `./COPYING' using GNU General Public License v3 file
Makefile.am: Consider adding the COPYING file to the version control system
Makefile.am: for your code, to avoid questions about which license your
project uses.
I'm installing this to silence the warning. It shouldn't have any impact on
tarball generation.
From: Eric Blake <address@hidden>
Date: Wed, 26 Nov 2008 10:35:20 -0700
Subject: [PATCH] Keep COPYING in repository.
* Makefile.am (MAINTAINERCLEANFILES): Don't remove COPYING.
* .cvsignore: Don't ignore it.
* .gitignore: Likewise.
* COPYING: Store in repository, per automake 1.10.2
recommendation.
Signed-off-by: Eric Blake <address@hidden>
---
.cvsignore | 1 -
.gitignore | 1 -
COPYING | 674 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ChangeLog | 9 +
Makefile.am | 2 +-
5 files changed, 684 insertions(+), 3 deletions(-)
create mode 100644 COPYING
diff --git a/.cvsignore b/.cvsignore
index 493776c..143e169 100644
--- a/.cvsignore
+++ b/.cvsignore
@@ -14,7 +14,6 @@ config.sub
config-h.in
configure
configure.lineno
-COPYING
depcomp
gendocs.sh
GNUmakefile
diff --git a/.gitignore b/.gitignore
index fae2fd3..531d3b4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -17,7 +17,6 @@ config.sub
config-h.in
configure
configure.lineno
-COPYING
CVS
depcomp
gendocs.sh
diff --git a/COPYING b/COPYING
new file mode 100644
index 0000000..94a9ed0
diff --git a/ChangeLog b/ChangeLog
index c34b964..d100a59 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
2008-11-26 Eric Blake <address@hidden>
+ Keep COPYING in repository.
+ * Makefile.am (MAINTAINERCLEANFILES): Don't remove COPYING.
+ * .cvsignore: Don't ignore it.
+ * .gitignore: Likewise.
+ * COPYING: Store in repository, per automake 1.10.2
+ recommendation.
+
+2008-11-26 Eric Blake <address@hidden>
+
Document optimized forloop.
* doc/m4.texinfo (Improved forloop): Mention alternate style that
avoids define overhead.
diff --git a/Makefile.am b/Makefile.am
index 4f4a60b..f98266c 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -26,7 +26,7 @@ EXTRA_DIST = bootstrap c-boxes.el cfg.mk maint.mk \
DISTCLEANFILES = stamp-h
## maintainer-clean should remove as much as possible that ./bootstrap can
## recreate. In the m4 directory, keep only gnulib-cache.m4.
-MAINTAINERCLEANFILES = COPYING INSTALL Makefile.in aclocal.m4 \
+MAINTAINERCLEANFILES = INSTALL Makefile.in aclocal.m4 \
config-h.in configure depcomp doc/fdl.texi gendocs.sh install-sh \
lib/[a-z]* m4/[a-fh-z]* m4/g[a-mo-z]* m4/gnulib-comp.m4 \
m4/gnulib-tool.m4 missing stamp-h.in
--
1.6.0.4
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- COPYING in repository,
Eric Blake <=