diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2002-11-16 00:20:07 +0000 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2002-11-16 00:20:07 +0000 |
commit | d73c192bb83075dcc28aa04346d9fe9e3eea4a56 (patch) | |
tree | 2e082837fac3583817b3b7d53e0a85d7ec07ff32 /lang/erlang | |
parent | 12a846028174589e7e6df50a75d6fa21d9acefa2 (diff) | |
download | ports-d73c192bb83075dcc28aa04346d9fe9e3eea4a56.tar.gz ports-d73c192bb83075dcc28aa04346d9fe9e3eea4a56.zip |
Notes
Diffstat (limited to 'lang/erlang')
-rw-r--r-- | lang/erlang/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/erlang/Makefile b/lang/erlang/Makefile index 2ffb8a8c2e19..f90bdab29ed8 100644 --- a/lang/erlang/Makefile +++ b/lang/erlang/Makefile @@ -104,7 +104,7 @@ post-install: @${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/lib/erlang @${CHMOD} -R o+rX-w,g+rX-w ${PREFIX}/lib/erlang @sslapp=`ls -d ${PREFIX}/lib/erlang/lib/ssl-* | tail -1`; \ - cd $$sslapp/priv/obj && ${MAKE} && strip ../bin/ssl_esock + cd $$sslapp/priv/obj && ${MAKE} && strip ../bin/ssl_esock # All non-library files. @@ -116,13 +116,13 @@ post-install: # Stock OTP libraries. - for LIBRARY in ${OTP_LIBS}; do \ + @for LIBRARY in ${OTP_LIBS}; do \ cd ${PREFIX} ; ${FIND} lib/erlang/lib/$${LIBRARY} -type f -o -type l; \ done | sort >> ${WRKDIR}/PLIST.lib-erlang # Stock OTP library directories. - for LIBRARY in ${OTP_LIBS}; do \ + @for LIBRARY in ${OTP_LIBS}; do \ cd ${PREFIX} ; ${FIND} lib/erlang/lib/$${LIBRARY} -type d \ | ${SED} -e 's/^/@dirrm /g'; \ done | sort -r >> ${WRKDIR}/PLIST.lib-erlang |