diff options
author | jschauma <jschauma@pkgsrc.org> | 2005-07-13 15:28:49 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2005-07-13 15:28:49 +0000 |
commit | 0a35de9a628a4906e627ad0e1a4832d26626a66b (patch) | |
tree | a5a3c409132a678d5ead38d983a312cae6b5c19d /devel/libtool-base | |
parent | e5b9c2487a434ba4ac47fba98cef990c52a2918d (diff) | |
download | pkgsrc-0a35de9a628a4906e627ad0e1a4832d26626a66b.tar.gz |
On IRIX, don't use a cache-file, since configure bails out after
trying to reparse the cache. Ugh.
Diffstat (limited to 'devel/libtool-base')
-rw-r--r-- | devel/libtool-base/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/devel/libtool-base/Makefile b/devel/libtool-base/Makefile index 436813ff684..30d92898cb5 100644 --- a/devel/libtool-base/Makefile +++ b/devel/libtool-base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.69 2005/07/03 19:01:51 tv Exp $ +# $NetBSD: Makefile,v 1.70 2005/07/13 15:28:49 jschauma Exp $ ########################################################################### ########################################################################### @@ -54,7 +54,9 @@ CONFIGURE_ARGS+= --disable-libtool-lock CONFIGURE_ARGS+= --disable-shared BUILD_SHLIBTOOL= NO . endif - +.elif ${OPSYS} == "IRIX" +# configure bails out in subdir after re-parsing the cache +CONFIGURE_ARGS+= --cache-file=/dev/null .endif CONFIGURE_ARGS+= --disable-ltdl-install |