From d8d87c71ee7f20d8c34cf98751fb19a636b01b33 Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Fri, 10 Jun 2005 14:17:49 +0000 Subject: [PATCH] * Makefile.in (install-build): Make installed config.nice 0755 too. Submitted by: Daniel Rall git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@189963 13f79535-47bb-0310-9956-ffa450edef68 --- Makefile.in | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile.in b/Makefile.in index f9a297767a..8bbbc30275 100644 --- a/Makefile.in +++ b/Makefile.in @@ -88,12 +88,14 @@ install-conf: 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 -- 2.50.1