summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2005-06-10 14:17:49 +0000
committerJoe Orton <jorton@apache.org>2005-06-10 14:17:49 +0000
commitd8d87c71ee7f20d8c34cf98751fb19a636b01b33 (patch)
treec4c4bf832c197300c9e4dd26c46009bf776461a7 /Makefile.in
parent99351e7f70b4629d79cb7f4e3e2ad09ddd5bfce6 (diff)
downloadhttpd-d8d87c71ee7f20d8c34cf98751fb19a636b01b33.tar.gz
* Makefile.in (install-build): Make installed config.nice 0755 too.
Submitted by: Daniel Rall <dlr apache.org> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@189963 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in10
1 files 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