Return-Path: Delivered-To: apmail-axis-c-dev-archive@www.apache.org Received: (qmail 16190 invoked from network); 26 Oct 2010 18:35:49 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 26 Oct 2010 18:35:49 -0000 Received: (qmail 48810 invoked by uid 500); 26 Oct 2010 18:35:49 -0000 Delivered-To: apmail-axis-c-dev-archive@axis.apache.org Received: (qmail 48714 invoked by uid 500); 26 Oct 2010 18:35:48 -0000 Mailing-List: contact c-dev-help@axis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Apache AXIS C Developers List" Delivered-To: mailing list c-dev@axis.apache.org Received: (qmail 48705 invoked by uid 99); 26 Oct 2010 18:35:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Oct 2010 18:35:48 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS,T_FRT_BELOW2 X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [137.65.250.26] (HELO victor.provo.novell.com) (137.65.250.26) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Oct 2010 18:35:41 +0000 Received: from [164.99.208.58] (prv-ext-foundry1int.gns.novell.com [137.65.251.240]) by victor.provo.novell.com with ESMTP; Tue, 26 Oct 2010 12:35:09 -0600 Message-ID: <4CC71F5C.7040903@novell.com> Date: Tue, 26 Oct 2010 14:35:08 -0400 From: Robert Schweikert User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.12) Gecko/20100914 SUSE/3.0.8 Lightning/1.0b1 Thunderbird/3.0.8 MIME-Version: 1.0 To: c-dev@axis.apache.org Subject: Respect DESTDIR for documentation install Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi, The patch bellow changes the Makefile such that DESTDIR is respected for the documentation installation. diff -Naurh ./Makefile.in axis2c-src-1.6.0/Makefile.in --- ./Makefile.in 2009-08-01 14:21:55.000000000 -0300 +++ axis2c-src-1.6.0/Makefile.in 2009-08-01 14:22:13.000000000 -0300 @@ -828,9 +828,9 @@ rm -rf axis2c-bin-${PACKAGE_VERSION}-linux install-data-hook: - cp -r docs $(docsdir) - rm -rf `find $(docsdir)/ -type d -name .svn` - rm $(docsdir)/README + cp -r docs $(DESTDIR)$(docsdir) + rm -rf `find $(DESTDIR)$(docsdir)/ -type d -name .svn` + rm $(DESTDIR)$(docsdir)/README # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: Robert -- Robert Schweikert MAY THE SOURCE BE WITH YOU Software Engineer Consultant LINUX rschweikert@novell.com 781-464-8147 Novell Making IT Work As One --------------------------------------------------------------------- To unsubscribe, e-mail: c-dev-unsubscribe@axis.apache.org For additional commands, e-mail: c-dev-help@axis.apache.org