diff options
author | jschauma <jschauma@pkgsrc.org> | 2003-06-29 21:25:49 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2003-06-29 21:25:49 +0000 |
commit | 16b6beba8f41c66d780d2687293beca4cd7e83db (patch) | |
tree | 01b0579921e0d88844837e345fb9b8d003dc0653 /mk/defs.IRIX.mk | |
parent | c1d69ac614b95ecb33a2625247fa97a9007f611e (diff) | |
download | pkgsrc-16b6beba8f41c66d780d2687293beca4cd7e83db.tar.gz |
Introduce a variable called "MAKEINFO_ARGS", which may be used to pass
arguments to makeinfo(1). This was made necessary by the fact that under
IRIX64 makeinfo(1) does not use a default split-size of 50000, which breaks
our PLISTs. After feedback from seb@, initialize MAKEINFO_ARGS per default
to _OPSYS_MAKEINFO_ARGS, which is set in defs.<OPSYS>.mk (currently only
for IRIX using 64-bit ABI).
Diffstat (limited to 'mk/defs.IRIX.mk')
-rw-r--r-- | mk/defs.IRIX.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mk/defs.IRIX.mk b/mk/defs.IRIX.mk index fdfece49721..a5fc793f3a9 100644 --- a/mk/defs.IRIX.mk +++ b/mk/defs.IRIX.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.IRIX.mk,v 1.27 2003/06/23 21:36:29 jschauma Exp $ +# $NetBSD: defs.IRIX.mk,v 1.28 2003/06/29 21:25:50 jschauma Exp $ # # Variable definitions for the IRIX operating system. @@ -124,6 +124,10 @@ _PREFORMATTED_MAN_DIR= man # directory where catman pages are _USE_GNU_GETTEXT= no # Don't use GNU gettext _USE_RPATH= yes # add rpath to LDFLAGS +.if defined(ABI) && ${ABI} == "64" +_OPSYS_MAKEINFO_ARGS= --split-size=50000 # flags to be passed to makeinfo(1) +.endif + # flags passed to the linker to extract all symbols from static archives. # XXX: # These flags are for the IRIX linker. If GNU ld is used, these would need |