Package: libapache2-mod-auth-openid
Version: 0.2-1
Tags: patch
Severity: grave
Justification: renders package unusable

As seen on packages.debian.org, this package is missing the actual
module (mod_auth_openid.so) on all autobuilt architectures.

>From the buildd logs:

c -o mod_auth_openid.la libmodauthopenid.la -I/usr/include/apache2 
-I/usr/include/apr-1.0  -lopkele -lcurl -lgssapi_krb5 -lssl -lcrypto -lpcre   
-ldb_cxx \
                 -lpcre -lcurl -lgssapi_krb5
make[2]: c: Command not found
make[2]: [mod_auth_openid.la] Error 127 (ignored)

i -S 
LIBEXECDIR=/build/buildd/libapache2-mod-auth-openid-0.2/debian/libapache2-mod-auth-openid/usr/lib/apache2/modules
 -n 'authopenid' mod_auth_openid.la
make[2]: i: Command not found
make[2]: [install-exec-local] Error 127 (ignored)

Apparently ${APXS} doesn't get expanded in Makefile.am. Proposed patch
attached.

Cheers,
-- 
Niko Tyni   [EMAIL PROTECTED]
diff --git a/configure.ac b/configure.ac
index e2c1105..31adb06 100644
--- a/configure.ac
+++ b/configure.ac
@@ -34,6 +34,7 @@ fi]
 
 # this will look for apxs command - put it in $APXS, fail on failure
 AX_WITH_APXS()
+AC_SUBST([APXS])
 # find apr-config binary
 AC_ARG_WITH(apr_config, AC_HELP_STRING([[--with-apr-config=FILE]], [Path to apr-config program]),
 			[ apr_config="$withval" ],

Reply via email to