diff options
author | linimon <linimon@FreeBSD.org> | 2003-12-23 14:12:18 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2003-12-23 14:12:18 +0800 |
commit | b10970766bd4b317cee66ccb2a2c1e6de381c3d7 (patch) | |
tree | 12c162d7eb57a995b6fc15317d24cebf52b405f5 /sysutils/grub | |
parent | 8fe4de78a60b17f62ec3452863e1d3ce2164c4d7 (diff) | |
download | freebsd-ports-gnome-b10970766bd4b317cee66ccb2a2c1e6de381c3d7.tar.gz freebsd-ports-gnome-b10970766bd4b317cee66ccb2a2c1e6de381c3d7.tar.zst freebsd-ports-gnome-b10970766bd4b317cee66ccb2a2c1e6de381c3d7.zip |
Mark as broken on recent versions of 5.x due to gcc3.3 compilation
problems. Informed maintainer.
Diffstat (limited to 'sysutils/grub')
-rw-r--r-- | sysutils/grub/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sysutils/grub/Makefile b/sysutils/grub/Makefile index 586822ac7d3b..775341c8cd4e 100644 --- a/sysutils/grub/Makefile +++ b/sysutils/grub/Makefile @@ -35,10 +35,16 @@ MAN8= grub.8 grub-install.8 grub-md5-crypt.8 # @sleep 2 #.endif +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile on FreeBSD ${OSVERSION}" +.endif + pre-build: @${RM} ${WRKSRC}/docs/grub.info* post-install: @${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |