summaryrefslogtreecommitdiffstats
path: root/winsup/Makefile.in
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2009-02-24 02:11:14 +0000
committerChristopher Faylor <me@cgf.cx>2009-02-24 02:11:14 +0000
commit99fe2b786610ed7b7d5354ed792c22f8446b8ea6 (patch)
tree81bf84d1945ad81b1429ab2d371df9ec68e2b889 /winsup/Makefile.in
parentbe6f5dfdc711f7535ce58a9e5869b787719c0455 (diff)
downloadcygnal-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.in4
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)