summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDennis Schridde <dennis.schridde@uni-heidelberg.de>2016-04-12 19:01:30 +0200
committerSimo Sorce <simo@redhat.com>2016-04-12 18:17:29 -0400
commit258ac54878fc98cfd0e7c04216189561172b55bd (patch)
treef06d6ed8e5d2aff432b4f0af9f4daa83e15f883d
parent744debbc79dfad57fdf2728cb18e8d317df5e7f5 (diff)
downloadmod_auth_gssapi-258ac54878fc98cfd0e7c04216189561172b55bd.tar.gz
mod_auth_gssapi-258ac54878fc98cfd0e7c04216189561172b55bd.tar.xz
mod_auth_gssapi-258ac54878fc98cfd0e7c04216189561172b55bd.zip
Fix APXS error "cannot determine bootstrap symbol name"
Maybe related to out-of-source builds? ``` test -d /target/usr/lib/apache2/modules || mkdir -p /target/usr/lib/apache2/modules /usr/bin/apxs2 -i -S LIBEXECDIR=/target/usr/lib/apache2/modules mod_auth_gssapi.la apxs:Error: Sorry, cannot determine bootstrap symbol name. apxs:Error: Please specify one with option `-n'. Makefile:725: recipe for target 'install-exec-local' failed ``` Reviewed-by: Simo Sorce <simo@redhat.com> Close #79
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index d43897b..86b13e9 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -21,7 +21,7 @@ mod_auth_gssapi_la_LDFLAGS = \
install-exec-local:
test -d $(DESTDIR)$(APXS_LIBEXECDIR) || mkdir -p $(DESTDIR)$(APXS_LIBEXECDIR)
- @APXS@ -i -S LIBEXECDIR=$(DESTDIR)$(APXS_LIBEXECDIR) mod_auth_gssapi.la
+ @APXS@ -i -n mod_auth_gssapi -S LIBEXECDIR=$(DESTDIR)$(APXS_LIBEXECDIR) mod_auth_gssapi.la
clean-local:
rm -f mod_auth_gssapi.slo mod_auth_gssapi.la mod_auth_gssapi.lo .libs