From: Simon Wilkinson Date: Fri, 28 Jan 2011 15:01:21 +0000 (+0000) Subject: aklog: Use correct CFLAGS X-Git-Tag: upstream/1.8.0_pre1^2~4226 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=d8a2291c06b6c7ec86b5556ff742c4afb7d28736;p=packages%2Fo%2Fopenafs.git aklog: Use correct CFLAGS The aklog Makefile was setting XCFLAGS, but then not actually using them which meant that we never used the correct include path for the Kerberos libraries, or defined ALLOW_REGISTER Change-Id: Iae573bc216b42bdf9aa49e9f5f42a883e08b6265 Reviewed-on: http://gerrit.openafs.org/3766 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/aklog/Makefile.in b/src/aklog/Makefile.in index 6d7c5b9e9..76d8d5653 100644 --- a/src/aklog/Makefile.in +++ b/src/aklog/Makefile.in @@ -11,7 +11,8 @@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ -XCFLAGS=@XCFLAGS@ @KRB5_CPPFLAGS@ -DALLOW_REGISTER +MODULE_CFLAGS=@XCFLAGS@ @KRB5_CPPFLAGS@ -DALLOW_REGISTER + AKLIBS= ${LIBS} @KRB5_LDFLAGS@ @KRB5_LIBS@ AFSLIBS= ${TOP_LIBDIR}/libafsauthent.a \ ${TOP_LIBDIR}/libafsrpc.a \