aboutsummaryrefslogtreecommitdiffstats
path: root/databases
diff options
context:
space:
mode:
authorvanilla <vanilla@FreeBSD.org>2014-05-16 11:29:49 +0800
committervanilla <vanilla@FreeBSD.org>2014-05-16 11:29:49 +0800
commit9efe17bdc3216c1c0d7e8e0ea7b131e9d1713684 (patch)
tree22d169188b8a7b499f9952a5a1059356bad9d49b /databases
parentb27775c2fdbc3f714684018a2972a51d1b091fa7 (diff)
downloadfreebsd-ports-gnome-9efe17bdc3216c1c0d7e8e0ea7b131e9d1713684.tar.gz
freebsd-ports-gnome-9efe17bdc3216c1c0d7e8e0ea7b131e9d1713684.tar.zst
freebsd-ports-gnome-9efe17bdc3216c1c0d7e8e0ea7b131e9d1713684.zip
Support STAGEDIR.
Diffstat (limited to 'databases')
-rw-r--r--databases/mysql-udf/Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/databases/mysql-udf/Makefile b/databases/mysql-udf/Makefile
index 34b9188c2447..2588e69fed7f 100644
--- a/databases/mysql-udf/Makefile
+++ b/databases/mysql-udf/Makefile
@@ -24,7 +24,6 @@ PLIST_FILES+= lib/mysql/plugin/udf_${MODULE}.so
PLIST_DIRS= lib/mysql/plugin
-NO_STAGE= yes
.include <bsd.port.pre.mk>
.if ${ARCH} == amd64
@@ -39,12 +38,9 @@ do-build:
.endfor
do-install:
- ${MKDIR} ${PREFIX}/lib/mysql/plugin
+ ${MKDIR} ${STAGEDIR}${PREFIX}/lib/mysql/plugin
.for MODULE in ${MODULES}
- ${INSTALL_PROGRAM} ${WRKSRC}/udf_${MODULE}.so ${PREFIX}/lib/mysql/plugin/udf_${MODULE}.so
+ ${INSTALL_PROGRAM} ${WRKSRC}/udf_${MODULE}.so ${STAGEDIR}${PREFIX}/lib/mysql/plugin/udf_${MODULE}.so
.endfor
-post-install:
- @${CAT} ${PKGMESSAGE}
-
.include <bsd.port.post.mk>