diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2003-07-29 07:50:49 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2003-07-29 07:50:49 +0000 |
commit | a886453f23191ceefd5341cdba6eb6a3e131ee3d (patch) | |
tree | 392b95e0bee75d4fc8be7cf8daad771f345d0fb0 | |
parent | s/DOCDIR/DOCSDIR/g (diff) |
Add an ugly hack to cope with libtool mess. I'll have to get
USE_LIBTOOL working here in near future.
Notes
Notes:
svn path=/head/; revision=85839
-rw-r--r-- | devel/file/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/devel/file/Makefile b/devel/file/Makefile index 8a88d138997b..46f04d948b09 100644 --- a/devel/file/Makefile +++ b/devel/file/Makefile @@ -22,6 +22,9 @@ MAN3= libmagic.3 MAN4= magic.4 post-install: +# This is way too ugly! I need to get USE_LIBTOOL working. ${RM} -f ${PREFIX}/lib/libmagic.la + ${RM} -f ${PREFIX}/lib/libmagic.so.1 + ${MV} -f ${PREFIX}/lib/libmagic.so.1.0 ${PREFIX}/lib/libmagic.so.1 .include <bsd.port.mk> |