diff options
author | wes <wes@FreeBSD.org> | 2007-07-16 11:09:31 +0800 |
---|---|---|
committer | wes <wes@FreeBSD.org> | 2007-07-16 11:09:31 +0800 |
commit | 0e6e123e2d8c89e71384be0b733f6f04a932f07d (patch) | |
tree | 86e1ae5ed7a5acef7b021b2e08dc151a0929ac0d /lang | |
parent | fc391090df48585af257922fc2801befb3add809 (diff) | |
download | freebsd-ports-gnome-0e6e123e2d8c89e71384be0b733f6f04a932f07d.tar.gz freebsd-ports-gnome-0e6e123e2d8c89e71384be0b733f6f04a932f07d.tar.zst freebsd-ports-gnome-0e6e123e2d8c89e71384be0b733f6f04a932f07d.zip |
Fix the OSVERSION check so it will actually be defined.
Submitted by: Pav Lucistnik <pav@FreeBSD.org>
Diffstat (limited to 'lang')
-rw-r--r-- | lang/snobol/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/snobol/Makefile b/lang/snobol/Makefile index ac6c8a41317a..eb3943a09e34 100644 --- a/lang/snobol/Makefile +++ b/lang/snobol/Makefile @@ -15,14 +15,14 @@ COMMENT= 0.99.4 release of ``The Macro Implementation of SNOBOL4 in C'' DEPRECATED= Replaced by snobol4 port CONFLICTS= snobol4 -.if ${OSVERSION} > 699999 -BROKEN= ${DEPRECATED} -.endif - MAN1= snobol4.1 .include <bsd.port.pre.mk> +.if ${OSVERSION} > 699999 +BROKEN= ${DEPRECATED} +.endif + # Fix GCC 3.x from freaking out over some of our pointers. # # I had to patch gendata.sno, so I patched the changes it produces |