diff options
author | grant <grant> | 2005-07-31 03:46:05 +0000 |
---|---|---|
committer | grant <grant> | 2005-07-31 03:46:05 +0000 |
commit | c99569c6dc54e22ac21bd44b2cb0aea0d9239450 (patch) | |
tree | 696483e6c9f0816662120a84f88869cb62820e34 /mail/postfix/Makefile | |
parent | 8f5d041d584d39d8f33e2ae09db513ff6e588ec3 (diff) | |
download | pkgsrc-c99569c6dc54e22ac21bd44b2cb0aea0d9239450.tar.gz |
use ${LDFLAGS} in AUXLIBS so the chosen libdb can be found at runtime.
fixes build on Solaris.
Diffstat (limited to 'mail/postfix/Makefile')
-rw-r--r-- | mail/postfix/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/postfix/Makefile b/mail/postfix/Makefile index aa0109dce7f..6b6b48e3f7f 100644 --- a/mail/postfix/Makefile +++ b/mail/postfix/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.165 2005/07/22 06:12:44 martti Exp $ +# $NetBSD: Makefile,v 1.166 2005/07/31 03:46:05 grant Exp $ DISTNAME= postfix-2.2.5 CATEGORIES= mail @@ -26,7 +26,7 @@ POSTFIX_QUEUE_DIR?= ${VARBASE}/spool/postfix # AUXLIBS is a list of options to pass to the linker. # CCARGS= # empty -AUXLIBS= # empty +AUXLIBS= ${LDFLAGS} FIX_RPATH+= AUXLIBS # Set some default paths to override ${WRKSRC}/src/global/mail_params.h. |