You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2005/06/10 16:17:50 UTC

svn commit: r189963 - /httpd/httpd/trunk/Makefile.in

Author: jorton
Date: Fri Jun 10 07:17:49 2005
New Revision: 189963

URL: http://svn.apache.org/viewcvs?rev=189963&view=rev
Log:
* Makefile.in (install-build): Make installed config.nice 0755 too.

Submitted by: Daniel Rall <dlr apache.org>

Modified:
    httpd/httpd/trunk/Makefile.in

Modified: httpd/httpd/trunk/Makefile.in
URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/Makefile.in?rev=189963&r1=189962&r2=189963&view=diff
==============================================================================
--- httpd/httpd/trunk/Makefile.in (original)
+++ httpd/httpd/trunk/Makefile.in Fri Jun 10 07:17:49 2005
@@ -88,12 +88,14 @@
 install-build:
 	@echo Installing build system files 
 	@$(MKINSTALLDIRS) $(DESTDIR)$(installbuilddir) 
-	@for f in $(top_srcdir)/build/*.mk build/*.mk \
-		  $(top_builddir)/config.nice; do \
+	@for f in $(top_srcdir)/build/*.mk build/*.mk; do \
 	 $(INSTALL_DATA) $$f $(DESTDIR)$(installbuilddir); \
 	done
-	@$(INSTALL_PROGRAM) $(top_srcdir)/build/mkdir.sh $(DESTDIR)$(installbuilddir)
-	@$(INSTALL_PROGRAM) $(top_srcdir)/build/instdso.sh $(DESTDIR)$(installbuilddir)
+	@for f in $(top_builddir)/config.nice \
+		  $(top_srcdir)/build/mkdir.sh \
+		  $(top_srcdir)/build/instdso.sh; do \
+	 $(INSTALL_PROGRAM) $$f $(DESTDIR)$(installbuilddir); \
+	done
 	@sed "/^LIBTOOL/s#/[^ ]*/libtool \(.*\)#`$(APR_CONFIG) --apr-libtool` $(LTFLAGS)#" \
 	    build/config_vars.mk > $(DESTDIR)$(installbuilddir)/config_vars.mk