diff options
author | Joe Orton <jorton@apache.org> | 2005-06-10 16:17:49 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2005-06-10 16:17:49 +0200 |
commit | d8d87c71ee7f20d8c34cf98751fb19a636b01b33 (patch) | |
tree | c4c4bf832c197300c9e4dd26c46009bf776461a7 /Makefile.in | |
parent | * Makefile.in (install-build): Fix variable names. (diff) | |
download | apache2-d8d87c71ee7f20d8c34cf98751fb19a636b01b33.tar.xz apache2-d8d87c71ee7f20d8c34cf98751fb19a636b01b33.zip |
* 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.in | 10 |
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 |