diff options
author | kris <kris@FreeBSD.org> | 2004-09-26 10:12:17 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-09-26 10:12:17 +0800 |
commit | c1b8706f4db8797ab6d176ebacc9e95120583a75 (patch) | |
tree | c239cf2000a829b1211d8acc45116c12bbb285f4 /devel/pmake | |
parent | a1cf74f547b633edaf96014f747c867f538d9282 (diff) | |
download | freebsd-ports-gnome-c1b8706f4db8797ab6d176ebacc9e95120583a75.tar.gz freebsd-ports-gnome-c1b8706f4db8797ab6d176ebacc9e95120583a75.tar.zst freebsd-ports-gnome-c1b8706f4db8797ab6d176ebacc9e95120583a75.zip |
BROKEN on 5.x: Broken by changes to make(1)
Approved by: portmgr (self)
Diffstat (limited to 'devel/pmake')
-rw-r--r-- | devel/pmake/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/devel/pmake/Makefile b/devel/pmake/Makefile index 7e150527c2f5..5933c58a168b 100644 --- a/devel/pmake/Makefile +++ b/devel/pmake/Makefile @@ -31,6 +31,12 @@ MAN1= pmake.1 # #WANT_CUSTOMS= yes +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Broken by changes to make(1) on FreeBSD >= 5.x" +.endif + do-install:: @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} install) @@ -51,4 +57,4 @@ do-install:: ${INSTALL_MAN} ${WRKSRC}/doc/pmake.1 ${PREFIX}/man/man1 .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |