diff options
author | mezz <mezz@FreeBSD.org> | 2005-07-21 10:29:18 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2005-07-21 10:29:18 +0800 |
commit | 78f74ad107f0e2d8d348f6a5d204a7018269eb34 (patch) | |
tree | ee2ae4ac25d2b638c7a56acf2d6efa7e8aef0b8d /lang | |
parent | a21ef3c012926597731b0bfe49245c7a0aab814c (diff) | |
download | freebsd-ports-gnome-78f74ad107f0e2d8d348f6a5d204a7018269eb34.tar.gz freebsd-ports-gnome-78f74ad107f0e2d8d348f6a5d204a7018269eb34.tar.zst freebsd-ports-gnome-78f74ad107f0e2d8d348f6a5d204a7018269eb34.zip |
Really fix build for FreeBSD 7.x.
Change from: ${OSVERSION} > 700000
To: ${OSVERSION} >= 700000
Reported by: Anthony Ginepro <rapiere@renaissance.homeip.net>
Diffstat (limited to 'lang')
-rw-r--r-- | lang/mono/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/mono/Makefile b/lang/mono/Makefile index 3b245b29459a..b6e2f3f8223a 100644 --- a/lang/mono/Makefile +++ b/lang/mono/Makefile @@ -62,7 +62,7 @@ post-patch: ${WRKSRC}/mono/metadata/assembly.c @${REINPLACE_CMD} -e 's|.so.0|.so|g' \ ${WRKSRC}/configure -.if ${OSVERSION} > 700000 +.if ${OSVERSION} >= 700000 @${REINPLACE_CMD} -e 's|freebsd6|freebsd7|g' \ ${WRKSRC}/configure ${WRKSRC}/libgc/configure .endif |