diff options
author | jschauma <jschauma@pkgsrc.org> | 2005-01-19 16:11:26 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2005-01-19 16:11:26 +0000 |
commit | 341211b3675e42320abcae0415ad44c2e4976ab1 (patch) | |
tree | df55162a37e058ec15cc7f732f8e40b2b1175a15 | |
parent | 1154629c0254d830d2cb20cc0bbfadeca1843f8c (diff) | |
download | pkgsrc-341211b3675e42320abcae0415ad44c2e4976ab1.tar.gz |
Under IRIX, configure creates a corrupted cache file, so re-parsing that
file fails in the subdir. Hence, set --cache-file=/dev/null for IRIX.
-rw-r--r-- | devel/libtool-base/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/devel/libtool-base/Makefile b/devel/libtool-base/Makefile index 0a5de1172fb..c3b21ca3918 100644 --- a/devel/libtool-base/Makefile +++ b/devel/libtool-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.53 2005/01/01 20:53:19 tv Exp $ +# $NetBSD: Makefile,v 1.54 2005/01/19 16:11:26 jschauma Exp $ # .include "../../devel/libtool/Makefile.common" @@ -30,6 +30,11 @@ BUILD_SHLIBTOOL= NO CONFIGURE_ARGS+= --disable-ltdl-install BUILD_SHLIBTOOL?= YES +.if ${OPSYS} == "IRIX" +# configure bails out in subdir after re-parsing the cache +CONFIGURE_ARGS+= --cache-file=/dev/null +.endif + # We are going to want libtool to find the same versions of the C, C++, # and Fortran compilers. # |