aboutsummaryrefslogtreecommitdiffstats
path: root/devel
diff options
context:
space:
mode:
authorjeh <jeh@FreeBSD.org>2004-02-26 23:32:52 +0800
committerjeh <jeh@FreeBSD.org>2004-02-26 23:32:52 +0800
commitfd24557c3d4eaca2b8efc6b8ec5d2f5c68f0cfb4 (patch)
tree595393947ffeadc2c069fac04d2531e94072105c /devel
parentcd813622f3306abe3a233125133c1cd42c7c50da (diff)
downloadfreebsd-ports-gnome-fd24557c3d4eaca2b8efc6b8ec5d2f5c68f0cfb4.tar.gz
freebsd-ports-gnome-fd24557c3d4eaca2b8efc6b8ec5d2f5c68f0cfb4.tar.zst
freebsd-ports-gnome-fd24557c3d4eaca2b8efc6b8ec5d2f5c68f0cfb4.zip
It seems that some commands on 5.1-p? didn't like .if (${OSVERSION} ..) and
wanted it without the ( )
Diffstat (limited to 'devel')
-rw-r--r--devel/i386-rtems-gdb/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/i386-rtems-gdb/Makefile b/devel/i386-rtems-gdb/Makefile
index 66a99ff528de..6ff5a89b8123 100644
--- a/devel/i386-rtems-gdb/Makefile
+++ b/devel/i386-rtems-gdb/Makefile
@@ -7,7 +7,7 @@
PORTNAME= gdb
PORTVERSION= 5.2
-PORTREVISION= 4
+PORTREVISION= 5
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= gdb
@@ -54,7 +54,7 @@ PATCH_SITES+= http://rtems.thehousleys.net/:THN
.endif
.if ${LCLTARGET} == sparc-rtems
-.if (${OSVERSION} >= 502000)
+.if ${OSVERSION} >= 502000
CONFIGURE_ARGS+= --verbose --disable-sim
PLIST_SUB+= SPARC_NOSIM='@comment '
.else