diff options
author | mi <mi@FreeBSD.org> | 2014-12-10 23:49:56 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2014-12-10 23:49:56 +0800 |
commit | 251b7e602ea71c8cc2058426b2320c45b4c74dc7 (patch) | |
tree | d53ad09df5fc60f831eff27bfe5d491bf8883287 | |
parent | 29cf6fba4d4392495440bd0764ec9d6c6c434040 (diff) | |
download | freebsd-ports-gnome-251b7e602ea71c8cc2058426b2320c45b4c74dc7.tar.gz freebsd-ports-gnome-251b7e602ea71c8cc2058426b2320c45b4c74dc7.tar.zst freebsd-ports-gnome-251b7e602ea71c8cc2058426b2320c45b4c74dc7.zip |
Remove the USE_LDCONFIG -- the shared library installed by this port is
meant only to be loaded into Tcl at run-time by explicit path (via
"package require").
It does not need to be known to rtld. In fact, because the permissions
on the directory (lib/tdom0.8.3) allowed group-writing, ldconfig refused
to process the directory anyway.
Correct the latter problem for great justice.
-rw-r--r-- | www/tdom/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/tdom/Makefile b/www/tdom/Makefile index 1dcdeecd0014..6fbc035b5826 100644 --- a/www/tdom/Makefile +++ b/www/tdom/Makefile @@ -23,8 +23,6 @@ CONFIGURE_SCRIPT= ../configure pre-configure: ${RM} -f ${WRKSRC}/../generic/domalloc.? -USE_LDCONFIG= ${TDOMBASE} - PLIST_SUB+= PORTVERSION=${PORTVERSION} DOCS= CHANGES LICENSE README README.AOL @@ -43,6 +41,8 @@ CONFIGURE_ARGS+=--enable-threads --disable-tdomalloc \ --prefix=${PREFIX} --exec-prefix=${PREFIX} post-install: + chmod 755 ${STAGEDIR}${TDOMBASE} + chmod 644 ${STAGEDIR}${TDOMBASE}/* .if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${STAGEDIR}${DOCSDIR}/html . for FILE in ${DOCS} |