summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2004-03-06 11:59:23 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2004-03-06 11:59:23 +0000
commitf16753f6d7b0aed9b0f44a77988d2d90899e4deb (patch)
tree80f73e797775e2474faca95668017f6e94f6a224 /devel
parent- Unbreak: Build the four documentation formats sequentially (instead of simu... (diff)
- Use more right way to link library
PR: ports/63820 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=103092
Diffstat (limited to 'devel')
-rw-r--r--devel/ace+tao/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/devel/ace+tao/Makefile b/devel/ace+tao/Makefile
index 51b14e1fa2b2..5a951290af04 100644
--- a/devel/ace+tao/Makefile
+++ b/devel/ace+tao/Makefile
@@ -162,9 +162,10 @@ do-install:
for f in `${FIND} . -maxdepth 1 -name "lib*.so.${ACE_VERSION}" -o \
-name "lib*.so.${TAO_VERSION}" -not -name "*Test*"`; do \
${INSTALL_DATA} $${f} ${PREFIX}/lib; \
- ${LN} -fs ${PREFIX}/lib/$${f} \
- `${ECHO_CMD} ${PREFIX}/lib/$${f} | \
- ${SED} -e 's/.${ACE_VERSION}//;s/.${TAO_VERSION}//'`; \
+ lib=`${ECHO} $${f} | ${SED} -e s#.*/##`; \
+ (cd ${PREFIX}/lib; \
+ ${LN} -fs $${lib} `${ECHO} $${lib} | ${SED} -e \
+ 's/.${ACE_VERSION}//;s/.${TAO_VERSION}//'`); \
done
@${ECHO_MSG} "Installing executables into ${PREFIX}/bin"; \