diff options
author | agc <agc> | 1999-09-29 09:46:41 +0000 |
---|---|---|
committer | agc <agc> | 1999-09-29 09:46:41 +0000 |
commit | db7bca5bcad8c98b56f489e55c79758d0c8fe194 (patch) | |
tree | 920f97bd242d6555457fdf4ab7dfb450603f6f24 /corba/ORBit | |
parent | a4027dee48564faba8736f77e2dd599152b0d6ad (diff) | |
download | pkgsrc-db7bca5bcad8c98b56f489e55c79758d0c8fe194.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.
Diffstat (limited to 'corba/ORBit')
-rw-r--r-- | corba/ORBit/Makefile | 8 |
1 files changed, 7 insertions, 1 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" |