diff options
author | Christopher Faylor <me@cgf.cx> | 2009-02-24 02:11:14 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2009-02-24 02:11:14 +0000 |
commit | 99fe2b786610ed7b7d5354ed792c22f8446b8ea6 (patch) | |
tree | 81bf84d1945ad81b1429ab2d371df9ec68e2b889 /winsup/Makefile.in | |
parent | be6f5dfdc711f7535ce58a9e5869b787719c0455 (diff) | |
download | cygnal-99fe2b786610ed7b7d5354ed792c22f8446b8ea6.tar.gz cygnal-99fe2b786610ed7b7d5354ed792c22f8446b8ea6.tar.bz2 cygnal-99fe2b786610ed7b7d5354ed792c22f8446b8ea6.zip |
Add DESTDIR functionality to Makefile.in's.
Diffstat (limited to 'winsup/Makefile.in')
-rw-r--r-- | winsup/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/Makefile.in b/winsup/Makefile.in index a81229e54..3384c2cf8 100644 --- a/winsup/Makefile.in +++ b/winsup/Makefile.in @@ -65,9 +65,9 @@ endif all: Makefile $(SUBDIRS) install-license: CYGWIN_LICENSE COPYING - ${INSTALL} -d $(prefix)/share/doc/Cygwin + ${INSTALL} -d $(DESTDIR)$(prefix)/share/doc/Cygwin for i in $^; do \ - ${INSTALL} $$i $(prefix)/share/doc/Cygwin ; \ + ${INSTALL} $$i $(DESTDIR)$(prefix)/share/doc/Cygwin ; \ done install: Makefile $(INSTALL_LICENSE) $(INSTALL_SUBDIRS) |