This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-native.git
The following commit(s) were added to refs/heads/master by this push:
new 57ad3c2 Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=63159
57ad3c2 is described below
commit 57ad3c2cfeee7f01381389729531585debe74c9a
Author: Mark Thomas <[email protected]>
AuthorDate: Tue Jun 18 21:01:27 2019 +0100
Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=63159
Unable to complete build when build directory is outside of the source
tree.
Patch provided by Bob Huemmer.
---
native/Makefile.in | 2 +-
xdocs/miscellaneous/changelog.xml | 4 ++++
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/native/Makefile.in b/native/Makefile.in
index 67874eb..6e6c68a 100644
--- a/native/Makefile.in
+++ b/native/Makefile.in
@@ -80,7 +80,7 @@ install: $(TARGET_LIB)
$(APR_MKDIR) $(DESTDIR)$(includedir) $(DESTDIR)$(libdir)/pkgconfig \
$(DESTDIR)$(libdir) $(DESTDIR)$(bindir)
$(INSTALL_DATA) tcnative.pc
$(DESTDIR)$(libdir)/pkgconfig/$(TCNATIVE_PCFILE)
- $(INSTALL_DATA) include/*.h $(DESTDIR)$(includedir)
+ $(INSTALL_DATA) $(srcdir)/include/*.h $(DESTDIR)$(includedir)
list='$(INSTALL_SUBDIRS)'; for i in $$list; do \
( cd $$i ; $(MAKE) DESTDIR=$(DESTDIR) install ); \
done
diff --git a/xdocs/miscellaneous/changelog.xml
b/xdocs/miscellaneous/changelog.xml
index d84c94b..77f55f1 100644
--- a/xdocs/miscellaneous/changelog.xml
+++ b/xdocs/miscellaneous/changelog.xml
@@ -36,6 +36,10 @@
</section>
<section name="Changes in 1.2.22">
<changelog>
+ <fix>
+ <bug>63159</bug>: Unable to complete build when build directory is
+ outside of the source tree. Patch provided by Bob Huemmer. (markt)
+ </fix>
</changelog>
</section>
<section name="Changes in 1.2.21">
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]