diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2014-06-13 15:38:02 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2014-06-13 15:38:02 +0000 |
commit | 90450705c9f29254113de6a1629baaa10adc156f (patch) | |
tree | f554211f0d72bd1825bdb39acce287eb8df13945 | |
parent | c1f7fc21d84df1a87bbe8af5f01031d596a2786b (diff) |
Notes
-rw-r--r-- | databases/geoserver-mysql-plugin/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/databases/geoserver-mysql-plugin/Makefile b/databases/geoserver-mysql-plugin/Makefile index 49bfd1bfa16f..39b823244370 100644 --- a/databases/geoserver-mysql-plugin/Makefile +++ b/databases/geoserver-mysql-plugin/Makefile @@ -23,14 +23,10 @@ PLIST_FILES= ${GSLIBDIR}/gt-jdbc-mysql-2.7.2.jar \ LICENSE= LGPL21 -NO_STAGE= yes do-install: - @${MKDIR} ${PREFIX}/${GSLIBDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/${GSLIBDIR} .for f in ${PLIST_FILES:S,^${GSLIBDIR}/,,} - ${INSTALL_DATA} ${WRKDIR}/${f} ${PREFIX}/${GSLIBDIR} + ${INSTALL_DATA} ${WRKDIR}/${f} ${STAGEDIR}${PREFIX}/${GSLIBDIR} .endfor -post-install: - @${CAT} ${PKGMESSAGE} - .include <bsd.port.mk> |