diff options
author | Christopher Faylor <me@cgf.cx> | 2006-08-31 00:53:48 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2006-08-31 00:53:48 +0000 |
commit | c9f1f4b438be2ad49806ae4abc89ecc6badfb5ef (patch) | |
tree | 084d3a8278b5ccca0135d42064d4e56ce462c9c9 /winsup/Makefile.in | |
parent | 52d82ba5277b854196ed538aa5966155abbfd225 (diff) | |
download | cygnal-c9f1f4b438be2ad49806ae4abc89ecc6badfb5ef.tar.gz cygnal-c9f1f4b438be2ad49806ae4abc89ecc6badfb5ef.tar.bz2 cygnal-c9f1f4b438be2ad49806ae4abc89ecc6badfb5ef.zip |
* Makefile.in: Make install-license .PHONY. Make sure that doc directory is
created before copying to it.
Diffstat (limited to 'winsup/Makefile.in')
-rw-r--r-- | winsup/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/winsup/Makefile.in b/winsup/Makefile.in index 5aae11601..7508d439b 100644 --- a/winsup/Makefile.in +++ b/winsup/Makefile.in @@ -48,7 +48,7 @@ ZLIB=${findstring zlib,$(SUBDIRS)} INSTALL_LICENSE:=@INSTALL_LICENSE@ -.PHONY: all install clean all-info info install-info check \ +.PHONY: all install clean all-info info install-info install-license check \ $(SUBDIRS) $(INSTALL_SUBDIRS) $(CLEAN_SUBDIRS) .SUFFIXES: @@ -64,7 +64,8 @@ endif all: Makefile $(SUBDIRS) install-license: CYGWIN_LICENSE - $(INSTALL_DATA) $(srcdir)/CYGWIN_LICENSE $(prefix)/share/doc/Cygwin/CYGWIN_LICENSE + ${INSTALL} -d $(prefix)/share/doc/Cygwin + ${INSTALL} $^ $(prefix)/share/doc/Cygwin install: Makefile $(INSTALL_LICENSE) $(INSTALL_SUBDIRS) |