Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 76924 invoked by uid 500); 13 May 2002 05:33:41 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 76913 invoked from network); 13 May 2002 05:33:41 -0000 Date: 13 May 2002 05:33:40 -0000 Message-ID: <20020513053340.59086.qmail@icarus.apache.org> From: jerenkrantz@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr Makefile.in X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N jerenkrantz 02/05/12 22:33:40 Modified: . Makefile.in Log: Add -p option to the cp command for includes. (install-include in httpd-2.0 has the -p option.) Revision Changes Path 1.75 +2 -2 apr/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/apr/Makefile.in,v retrieving revision 1.74 retrieving revision 1.75 diff -u -r1.74 -r1.75 --- Makefile.in 22 Apr 2002 01:24:48 -0000 1.74 +++ Makefile.in 13 May 2002 05:33:39 -0000 1.75 @@ -62,10 +62,10 @@ if [ ! -d $(includedir) ]; then \ $(top_srcdir)/build/mkdir.sh $(includedir); \ fi; - cp $(top_srcdir)/include/*.h $(includedir); + cp -p $(top_srcdir)/include/*.h $(includedir); if test -n "$(top_blddir)"; then \ - cp $(top_blddir)/include/*.h $(includedir); \ + cp -p $(top_blddir)/include/*.h $(includedir); \ fi; if [ ! -d $(libdir) ]; then \ $(top_srcdir)/build/mkdir.sh $(libdir); \