diff options
author | seanb <seanb> | 2010-04-20 12:52:00 +0000 |
---|---|---|
committer | seanb <seanb> | 2010-04-20 12:52:00 +0000 |
commit | 2b6c679daef05b831209c18a2dd1b98d7a5b0037 (patch) | |
tree | 875ceac8d6867aaedc9339e81affefcdd442ecdb /mail | |
parent | 9474fa671522a7e7d2faf156ebaa199a353194e6 (diff) | |
download | pkgsrc-2b6c679daef05b831209c18a2dd1b98d7a5b0037.tar.gz |
On QNX libtool wasn't inferring the tag and sysexits is needed.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/imap-uw/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mail/imap-uw/Makefile b/mail/imap-uw/Makefile index 3009d1337b7..e377750fdb4 100644 --- a/mail/imap-uw/Makefile +++ b/mail/imap-uw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.132 2010/01/25 23:04:49 tron Exp $ +# $NetBSD: Makefile,v 1.133 2010/04/20 12:52:00 seanb Exp $ # # ATTENTION: # The Kerberos support in this software is known to be problematic. If you @@ -24,8 +24,8 @@ PKG_DESTDIR_SUPPORT= user-destdir USE_LIBTOOL= yes MAKE_ENV+= LIBTOOL=libtool -MAKE_ENV+= LTCOMPILE="libtool --mode=compile" -MAKE_ENV+= LTLINK="libtool --mode=link" +MAKE_ENV+= LTCOMPILE="libtool --tag=CC --mode=compile" +MAKE_ENV+= LTLINK="libtool --tag=CC --mode=link" LTINSTALL_PROGRAM= ${SETENV} ${MAKE_ENV} ${LIBTOOL} --mode=install ${INSTALL_PROGRAM} LTINSTALL_LIB= ${SETENV} ${MAKE_ENV} ${LIBTOOL} --mode=install ${INSTALL_LIB} @@ -160,4 +160,6 @@ install-doc: ${FIND} ${DOCDIR} -type d -print | ${XARGS} ${CHMOD} ${PKGDIRMODE} ${FIND} ${DOCDIR} -type f -print | ${XARGS} ${CHMOD} ${SHAREMODE} +.include "../../devel/sysexits/buildlink3.mk" + .include "../../mk/bsd.pkg.mk" |