diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2010-07-16 12:36:22 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2010-07-16 12:36:22 +0000 |
commit | bc7f8c22a9427b80f8de5f6a5ab804eb6fcd2b7c (patch) | |
tree | b54f1556d7235389559dbe48492b48fa6d3e0b25 /java/eclipse-shelled | |
parent | 45842346f7ae1a99ff16cf6263fec39285d278f5 (diff) |
Notes
Diffstat (limited to 'java/eclipse-shelled')
-rw-r--r-- | java/eclipse-shelled/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/java/eclipse-shelled/Makefile b/java/eclipse-shelled/Makefile index 6f3331ee5c9e..83d8e7bbb764 100644 --- a/java/eclipse-shelled/Makefile +++ b/java/eclipse-shelled/Makefile @@ -30,13 +30,13 @@ do-install: @${MKDIR} ${WRKSRC}/eclipse @${MV} ${WRKSRC}/plugins ${WRKSRC}/eclipse/plugins @${MV} ${WRKSRC}/features ${WRKSRC}/eclipse/features - @${MKDIR} ${PREFIX}/eclipse - @${CP} -r ${WRKSRC}/eclipse/plugins ${PREFIX}/eclipse - @${CP} -r ${WRKSRC}/eclipse/features ${PREFIX}/eclipse - @(cd ${WRKSRC}; ${FIND} -s eclipse/features eclipse/plugins -not -type d) >> ${TMPPLIST} + @${MKDIR} ${PREFIX}/lib/eclipse + @${CP} -r ${WRKSRC}/eclipse/plugins ${PREFIX}/lib/eclipse + @${CP} -r ${WRKSRC}/eclipse/features ${PREFIX}/lib/eclipse + @(cd ${WRKSRC}; ${FIND} -s eclipse/features eclipse/plugins -not -type d) | ${SED} -e 's,^eclipse,lib/eclipse,' >> ${TMPPLIST} @(cd ${WRKSRC}; ${FIND} -s -d eclipse/features eclipse/plugins -type d) \ | ${GREP} -vE 'eclipse/plugins$$|eclipse/features$$' \ - | ${SED} -ne 's,^,@dirrm ,p' >> ${TMPPLIST} + | ${SED} -ne 's,^,@dirrm lib/,p' >> ${TMPPLIST} @${MV} ${WRKSRC}/eclipse/plugins ${WRKSRC}/plugins @${MV} ${WRKSRC}/eclipse/features ${WRKSRC}/features @${RM} -rf ${WRKSRC}/eclipse |