diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2006-07-17 09:47:58 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2006-07-17 09:47:58 +0000 |
commit | 063e2a112b7b4fd3bb091ec597b7bd30db91b6aa (patch) | |
tree | 2531f824f1918291d94608b68b80f400597e316e /gnu/egcs | |
parent | a7c665ac8842fe73e4d3e24e51d6b453205e0824 (diff) |
make sure we pass makeinfo --no-split around, fixes gcc.info/g77.info
generation issues.
Diffstat (limited to 'gnu/egcs')
-rw-r--r-- | gnu/egcs/gcc/Makefile.bsd-wrapper | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/egcs/gcc/Makefile.bsd-wrapper b/gnu/egcs/gcc/Makefile.bsd-wrapper index 4729a5753e1..a3b458f217d 100644 --- a/gnu/egcs/gcc/Makefile.bsd-wrapper +++ b/gnu/egcs/gcc/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.20 2006/07/12 23:00:07 espie Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.21 2006/07/17 09:47:57 espie Exp $ MAN= cpp.1 gcc.1 protoize.1 gcov.1 MLINKS+= gcc.1 cc.1 @@ -26,7 +26,8 @@ MAKE_FLAGS= CFLAGS="${GNUCFLAGS}" \ DEMANGLER_PROG= \ DEMANGLE_H= \ LIBIBERTY_INCLUDES=${LIBIBERTY_INCLUDES} \ - build_infodir=. + build_infodir=. \ + MAKEINFO='makeinfo --no-split' .if ${MACHINE_ARCH} == "vax" MAKE_FLAGS+= HOST_CFLAGS="${VAXHOST_CFLAGS} -I${LIBIBERTY_INCLUDES}" |