diff options
author | rillig <rillig@pkgsrc.org> | 2005-05-31 19:44:15 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-05-31 19:44:15 +0000 |
commit | 65b9e34ce8fbdc3097ecdb9fd3a2f83058c543c0 (patch) | |
tree | a38d5085358ac4b2cb4c3fd009488a853a1a1bc7 /mail | |
parent | de23c20e9ba1282dbf1a8a2d529f9b820f3a2d0a (diff) | |
download | pkgsrc-65b9e34ce8fbdc3097ecdb9fd3a2f83058c543c0.tar.gz |
Changed $0 into $$0 in shell command.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/evolution/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/evolution/Makefile b/mail/evolution/Makefile index cbc02e373f9..9c79eae7cef 100644 --- a/mail/evolution/Makefile +++ b/mail/evolution/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.81 2005/05/22 20:08:11 jlam Exp $ +# $NetBSD: Makefile,v 1.82 2005/05/31 19:44:15 rillig Exp $ DISTNAME= evolution-2.2.2 CATEGORIES= mail time gnome @@ -73,7 +73,7 @@ CONFIGURE_ARGS+= --without-krb5 .if !empty(PKG_OPTIONS:Mssl) CONFIGURE_ARGS+= --enable-nss=yes PLIST_SUBST+= HAVE_SMIME= -PRINT_PLIST_AWK+= /smime/ { print "$${HAVE_SMIME}" $0; next; } +PRINT_PLIST_AWK+= /smime/ { print "$${HAVE_SMIME}" $$0; next; } # XXX Workaround for the following problem: addressbook/util/libeabutil.la # is compiled as a static library only which uses the NSS stuff. When other # parts of the program use this .la archive, they get the right -L flags |