You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by co...@apache.org on 2010/10/09 13:06:14 UTC

svn commit: r1006139 - /apr/apr-util/branches/0.9.x/xml/expat/Makefile.in

Author: covener
Date: Sat Oct  9 11:06:14 2010
New Revision: 1006139

URL: http://svn.apache.org/viewvc?rev=1006139&view=rev
Log:
ckport r1006134:
 honor $DESTDIR for install of builtin expat

Modified:
    apr/apr-util/branches/0.9.x/xml/expat/Makefile.in

Modified: apr/apr-util/branches/0.9.x/xml/expat/Makefile.in
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/0.9.x/xml/expat/Makefile.in?rev=1006139&r1=1006138&r2=1006139&view=diff
==============================================================================
--- apr/apr-util/branches/0.9.x/xml/expat/Makefile.in (original)
+++ apr/apr-util/branches/0.9.x/xml/expat/Makefile.in Sat Oct  9 11:06:14 2010
@@ -85,9 +85,9 @@ check: tests/runtests
 install: installlib
 
 installlib: $(LIBRARY) $(APIHEADER)
-	$(mkinstalldirs) $(libdir) $(includedir)
-	$(LIBTOOL) --mode=install $(INSTALL) $(LIBRARY) $(libdir)/$(LIBRARY)
-	$(INSTALL_DATA) $(APIHEADER) $(includedir)
+	$(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir)
+	$(LIBTOOL)  --mode=install $(INSTALL) $(LIBRARY) $(DESTDIR)$(libdir)/$(LIBRARY)
+	$(INSTALL_DATA) $(APIHEADER) $(DESTDIR)$(includedir)
 
 $(LIBRARY): $(LIB_OBJS)
 	$(LINK_LIB) $(LIB_OBJS)