diff options
author | agc <agc@pkgsrc.org> | 1999-09-29 09:46:41 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1999-09-29 09:46:41 +0000 |
commit | 78985436cfed66fa725de99b99ba4a18525fa64d (patch) | |
tree | 920f97bd242d6555457fdf4ab7dfb450603f6f24 | |
parent | 7224ff0db46fd78423f81ecac98f914646d2c0fe (diff) | |
download | pkgsrc-78985436cfed66fa725de99b99ba4a18525fa64d.tar.gz |
Add a do-build target to work around what would appear to be a
compiler error. I do not have the time, effort, energy or smarts to
fix the compiler.
-rw-r--r-- | corba/ORBit/Makefile | 8 | ||||
-rw-r--r-- | net/ORBit/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/corba/ORBit/Makefile b/corba/ORBit/Makefile index a53d227cb02..d72b5b68e0d 100644 --- a/corba/ORBit/Makefile +++ b/corba/ORBit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 1999/08/28 09:41:07 rh Exp $ +# $NetBSD: Makefile,v 1.24 1999/09/29 09:46:41 agc Exp $ # DISTNAME= ORBit-0.4.3 @@ -18,4 +18,10 @@ USE_GMAKE= yes LIBTOOL_FLAGS= --install-la INFO_FILES= libIDL.info +# This package fails to build, with an unterminated macro definition error +# Calling the build twice seems to workaround this. +do-build: + -@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${.MAKEFLAGS} all + -@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${.MAKEFLAGS} all + .include "../../mk/bsd.pkg.mk" diff --git a/net/ORBit/Makefile b/net/ORBit/Makefile index a53d227cb02..d72b5b68e0d 100644 --- a/net/ORBit/Makefile +++ b/net/ORBit/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 1999/08/28 09:41:07 rh Exp $ +# $NetBSD: Makefile,v 1.24 1999/09/29 09:46:41 agc Exp $ # DISTNAME= ORBit-0.4.3 @@ -18,4 +18,10 @@ USE_GMAKE= yes LIBTOOL_FLAGS= --install-la INFO_FILES= libIDL.info +# This package fails to build, with an unterminated macro definition error +# Calling the build twice seems to workaround this. +do-build: + -@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${.MAKEFLAGS} all + -@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} ${.MAKEFLAGS} all + .include "../../mk/bsd.pkg.mk" |