diff options
author | leeym <leeym@FreeBSD.org> | 2003-03-31 01:43:07 +0800 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2003-03-31 01:43:07 +0800 |
commit | 58d799eed2eefc8065a7062d1d7230fa3ccb9315 (patch) | |
tree | a8ae6afcf193b9d341b9ac864c55f82765eac5c7 /mail | |
parent | 9226d84009daf5ccbc3fa5b4e811f87d8fa62a72 (diff) | |
download | freebsd-ports-gnome-58d799eed2eefc8065a7062d1d7230fa3ccb9315.tar.gz freebsd-ports-gnome-58d799eed2eefc8065a7062d1d7230fa3ccb9315.tar.zst freebsd-ports-gnome-58d799eed2eefc8065a7062d1d7230fa3ccb9315.zip |
add trailing slash in path to help the users who forget to remove previously
installed files and directories.
PR: 50445
Submitted by: Alex Chen <dhchen@elearning.nsysu.edu.tw>
Diffstat (limited to 'mail')
-rw-r--r-- | mail/openwebmail/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/openwebmail/Makefile b/mail/openwebmail/Makefile index f60806ecea3d..9ebb84655377 100644 --- a/mail/openwebmail/Makefile +++ b/mail/openwebmail/Makefile @@ -78,8 +78,8 @@ post-patch: .endif do-install: - @${CP} -R ${WRKSRC}/cgi-bin/openwebmail ${OWCGIDIR} - @${CP} -R ${WRKSRC}/data/openwebmail ${OWDATADIR} + @${CP} -R ${WRKSRC}/cgi-bin/openwebmail/ ${OWCGIDIR} + @${CP} -R ${WRKSRC}/data/openwebmail/ ${OWDATADIR} @${CHOWN} -R root:mail ${OWCGIDIR} @${CHMOD} 0770 ${OWCGIDIR}/etc/sessions ${OWCGIDIR}/etc/users @${CHMOD} 4755 ${OWCGIDIR}/openwebmail*pl |