diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2006-03-13 14:34:18 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2006-03-13 14:34:18 +0800 |
commit | fcf55cfeabfbc5e6d771b547404cb9164b13900a (patch) | |
tree | d06e14af7d84adaee1bda3962102e67b24f2264b /textproc | |
parent | 5cf06936f302eefd8baf6577c11ee9f835514cbf (diff) | |
download | freebsd-ports-gnome-fcf55cfeabfbc5e6d771b547404cb9164b13900a.tar.gz freebsd-ports-gnome-fcf55cfeabfbc5e6d771b547404cb9164b13900a.tar.zst freebsd-ports-gnome-fcf55cfeabfbc5e6d771b547404cb9164b13900a.zip |
Fix incorrect use of $OSREL for unbreak on old versions.
Reported by: tdb
Approved by: portmgr (linimon)
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/rast/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/rast/Makefile b/textproc/rast/Makefile index 32fb9c9b69f1..e142e0443990 100644 --- a/textproc/rast/Makefile +++ b/textproc/rast/Makefile @@ -67,7 +67,7 @@ PLIST_SUB+= WITH_XMLRPC_C="@comment " .include <bsd.port.pre.mk> # For 4.x systems. -.if (${OSREL} <= 4 || ${OSVERSION} <= 503000) +.if ${OSVERSION} <= 503000 BUILD_DEPENDS+= ${LOCALBASE}/include/magic.h:${PORTSDIR}/sysutils/file .endif |