diff options
author | wxs <wxs@FreeBSD.org> | 2012-03-26 21:10:01 +0800 |
---|---|---|
committer | wxs <wxs@FreeBSD.org> | 2012-03-26 21:10:01 +0800 |
commit | c03a3b006bf9ac8ad70ab7d7b38bc917ce797fc1 (patch) | |
tree | 6d7c1ce872296b07ecc322523c3c414b77052db3 | |
parent | 2aa8448c6a1ee1262b9addb7255ea764a01f5b98 (diff) | |
download | freebsd-ports-gnome-c03a3b006bf9ac8ad70ab7d7b38bc917ce797fc1.tar.gz freebsd-ports-gnome-c03a3b006bf9ac8ad70ab7d7b38bc917ce797fc1.tar.zst freebsd-ports-gnome-c03a3b006bf9ac8ad70ab7d7b38bc917ce797fc1.zip |
Fix reinstall target by not moving files. Instead copy them.
PR: ports/166167
Submitted by: "A.J. Kehoe IV (Nanoman)" <hg3hNqHo@nanoman.ca>
Feature safe: yes
-rw-r--r-- | mail/mailman/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mailman/Makefile b/mail/mailman/Makefile index 52e93857dd0c..98de2744a1ec 100644 --- a/mail/mailman/Makefile +++ b/mail/mailman/Makefile @@ -187,7 +187,7 @@ post-install: @uudecode -p ${FILESDIR}/powerlogo.gif.uue > \ ${PREFIX}/${IMGDIR}/powerlogo.gif .if !defined(NOPORTDOCS) - @${MV} ${WRKSRC}/doc/* ${WRKSRC}/ + @${CP} -R ${WRKSRC}/doc/* ${WRKSRC}/ @${MKDIR} ${DOCSDIR} @${INSTALL_DATA} ${FILESDIR}/FreeBSD-post-install-notes ${DOCSDIR} .for docfile in ${PORTDOCS:NFreeBSD-post-install-notes} |