diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-05-05 20:16:33 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-05-05 20:16:33 +0000 |
commit | 9ef2cce7830fedd9aacf3de2c679ab968f4ff962 (patch) | |
tree | 34a7575751b2180bb795987b3211785f10017840 /gnu/usr.bin | |
parent | 166a461adbfea2066944487a50fb49f184f2ca18 (diff) |
If gdb is not configured do not build the manpage.
This allows the powerpc port to build.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/binutils/Makefile.bsd-wrapper | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/usr.bin/binutils/Makefile.bsd-wrapper b/gnu/usr.bin/binutils/Makefile.bsd-wrapper index a792d3dc6ab..4b54e8e4dfc 100644 --- a/gnu/usr.bin/binutils/Makefile.bsd-wrapper +++ b/gnu/usr.bin/binutils/Makefile.bsd-wrapper @@ -1,15 +1,19 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.13 1997/05/04 01:11:52 niklas Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.14 1997/05/05 20:16:32 rahnds Exp $ MAN= binutils/ar.1 binutils/nm.1 \ binutils/objcopy.1 binutils/objdump.1 binutils/ranlib.1 \ binutils/size.1 binutils/strings.1 binutils/strip.1 \ - gas/doc/as.1 gdb/gdb.1 gprof/gprof.1 ld/ld.1 + gas/doc/as.1 gprof/gprof.1 ld/ld.1 SUBDIRS= libiberty opcodes bfd # gdb not ready yet .if (${MACHINE_ARCH} != "powerpc") SUBDIRS+= gdb mmalloc readline +MAN+= gdb/gdb.1 .endif + + + SUBDIRS+= binutils ld gas all: config.status |