diff options
author | Jeremy Messenger <mezz@FreeBSD.org> | 2005-07-12 22:02:38 +0000 |
---|---|---|
committer | Jeremy Messenger <mezz@FreeBSD.org> | 2005-07-12 22:02:38 +0000 |
commit | c5afeece28a129d812ecb4ee748f0e650afaca7d (patch) | |
tree | c1fad9ff170c6fad514c46d731f85cb1c7dda099 /lang/mono | |
parent | f711f9686d36f84d0dced6039ec87dcfbac8b4ab (diff) |
Fix the .so.0 -> .so, got bite by beagle when it can't find libsqlite.so.0.
Bump the PORTREVISION.
Notes
Notes:
svn path=/head/; revision=139007
Diffstat (limited to 'lang/mono')
-rw-r--r-- | lang/mono/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/mono/Makefile b/lang/mono/Makefile index d7a3e122c31e..9c2c973db9c5 100644 --- a/lang/mono/Makefile +++ b/lang/mono/Makefile @@ -2,12 +2,13 @@ # Date created: 22 July 2002 # Whom: Yukihiro Nakai <nakai@FreeBSD.org> # -# $Id: Makefile,v 1.29 2005/07/07 05:52:45 tmclau02 Exp $ +# $Id: Makefile,v 1.30 2005/07/12 22:00:50 mezz7 Exp $ # $FreeBSD$ # PORTNAME= mono PORTVERSION= 1.1.8.2 +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= http://www.go-mono.com/sources/mono-1.1/ @@ -59,6 +60,8 @@ USE_FAM= yes post-patch: @${REINPLACE_CMD} -e 's|%%X11BASE%%|${X11BASE}|g' \ ${WRKSRC}/mono/metadata/assembly.c + @${REINPLACE_CMD} -e 's|.so.0|.so|g' \ + ${WRKSRC}/configure tests: build @${ECHO_MSG} "===> Running mono regression tests" |