diff options
author | marcus <marcus@FreeBSD.org> | 2003-06-16 04:54:51 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-06-16 04:54:51 +0000 |
commit | daa77c1e79dc0e052b39aa18e6ebe4fc1ddc600f (patch) | |
tree | 4fc9563b861af77ddd27c4eb98109e160518e610 | |
parent | c33ac8c8d2de46396f11898f178e382c527fadb9 (diff) | |
download | FreeBSD-ports-daa77c1e79dc0e052b39aa18e6ebe4fc1ddc600f.zip FreeBSD-ports-daa77c1e79dc0e052b39aa18e6ebe4fc1ddc600f.tar.gz |
Remove the quotes from ${EVO_VERSION} and change the chmod call a bit.
-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 dad196f..850ddb4 100644 --- a/mail/evolution/Makefile +++ b/mail/evolution/Makefile @@ -44,7 +44,7 @@ CONFIGURE_ARGS= --with-db3-libs=${DB3_WRKSRC} \ --enable-nss=no \ --enable-openssl=yes -EVO_VERSION= "1.4" +EVO_VERSION= 1.4 .if defined(WITH_LDAP) CONFIGURE_ARGS+= --with-openldap=${LOCALBASE} @@ -94,6 +94,6 @@ pre-configure: post-install: @${FIND} ${PREFIX}/share/gnome/evolution/${EVO_VERSION}/default_user \ - -type f | ${XARGS} ${CHMOD} 0644 + -type f | ${XARGS} ${CHMOD} u+w .include <bsd.port.mk> |