Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2008-05-16 14:37:27 +0400
committerCorinna Vinschen <corinna@vinschen.de>2008-05-16 14:37:27 +0400
commit888784b6fbdf19f23874fad9fd5a2ee7bc0e26da (patch)
tree8cd3eaf2fdbac712c420104bdee8de95fef3662d /winsup
parentbd89ab895b3d3b3883a89d24cea968bb92d37279 (diff)
* Makefile.in (install-license): Install COPYING file as well.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/ChangeLog4
-rw-r--r--winsup/Makefile.in6
2 files changed, 8 insertions, 2 deletions
diff --git a/winsup/ChangeLog b/winsup/ChangeLog
index 4600fdb92..c6441b4bb 100644
--- a/winsup/ChangeLog
+++ b/winsup/ChangeLog
@@ -1,5 +1,9 @@
2008-05-16 Corinna Vinschen <corinna@vinschen.de>
+ * Makefile.in (install-license): Install COPYING file as well.
+
+2008-05-16 Corinna Vinschen <corinna@vinschen.de>
+
* CYGWIN_LICENSE: New text.
2007-08-31 Christopher Faylor <me+cygwin@cgf.cx>
diff --git a/winsup/Makefile.in b/winsup/Makefile.in
index 5ea10686e..4417a9585 100644
--- a/winsup/Makefile.in
+++ b/winsup/Makefile.in
@@ -63,9 +63,11 @@ endif
all: Makefile $(SUBDIRS)
-install-license: CYGWIN_LICENSE
+install-license: CYGWIN_LICENSE COPYING
${INSTALL} -d $(prefix)/share/doc/Cygwin
- ${INSTALL} $^ $(prefix)/share/doc/Cygwin
+ for i in $^; do \
+ ${INSTALL} $$i $(prefix)/share/doc/Cygwin ; \
+ done
install: Makefile $(INSTALL_LICENSE) $(INSTALL_SUBDIRS)