summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorolavmrk <olavmrk@a716ebb1-153a-0410-b759-cfb97c6a1b53>2011-03-30 07:40:23 +0000
committerolavmrk <olavmrk@a716ebb1-153a-0410-b759-cfb97c6a1b53>2011-03-30 07:40:23 +0000
commitb9ba37808de135ffb35675c412848c7a2d5a0284 (patch)
tree6cbd02a39152cba8416750f86e6cc088c76f8a74
parent7be0942eb04528eec300a04f55aa0ecd0a05a486 (diff)
downloadmod_auth_mellon-b9ba37808de135ffb35675c412848c7a2d5a0284.tar.gz
mod_auth_mellon-b9ba37808de135ffb35675c412848c7a2d5a0284.tar.xz
mod_auth_mellon-b9ba37808de135ffb35675c412848c7a2d5a0284.zip
Makefile: Fix invocation of apxs.
New versions of apxs requires the use of -Wc and -Wl for passing flags to the compiler and linker. git-svn-id: https://modmellon.googlecode.com/svn/trunk@119 a716ebb1-153a-0410-b759-cfb97c6a1b53
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index a80861a..3f3e189 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -33,7 +33,7 @@ DISTFILES=$(SRC) \
all: mod_auth_mellon.la
mod_auth_mellon.la: $(SRC) auth_mellon.h
- @APXS2@ @OPENSSL_CFLAGS@ @LASSO_CFLAGS@ @CURL_CFLAGS@ @OPENSSL_LIBS@ @LASSO_LIBS@ @CURL_LIBS@ -Wc,-Wall -Wc,-g -c $(SRC)
+ @APXS2@ -Wc,"@OPENSSL_CFLAGS@ @LASSO_CFLAGS@ @CURL_CFLAGS@" -Wl,"@OPENSSL_LIBS@ @LASSO_LIBS@ @CURL_LIBS@" -Wc,-Wall -Wc,-g -c $(SRC)
# Building configure (for distribution)