diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-06-06 08:08:00 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-06-06 08:08:00 +0000 |
commit | c2399020336ed4f02b55c495cc3825dcf4c5c686 (patch) | |
tree | f8da176ebda9cd6664fbc55e26e6640b037dfe70 /gnu | |
parent | 9b4581078fef65ea9fcbe278a7e3e805e1e4b20f (diff) |
disable gprof on alpha... again.. texinfo problems
Diffstat (limited to 'gnu')
-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 6408ccbfe9d..7dce864f35f 100644 --- a/gnu/usr.bin/binutils/Makefile.bsd-wrapper +++ b/gnu/usr.bin/binutils/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.23 1998/05/18 00:43:21 marc Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.24 1998/06/06 08:07:59 deraadt Exp $ SUBDIRS= libiberty opcodes bfd MAN= @@ -12,13 +12,17 @@ MAN+= gdb/gdb.1 # some ports use all of binutils, some do not. .if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "mips") || \ (${MACHINE_ARCH} == "powerpc") -SUBDIRS+= binutils ld gas gprof +SUBDIRS+= binutils ld gas 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 gprof/gprof.1 ld/ld.1 .endif +.if (${MACHINE_ARCH} == "mips") || (${MACHINE_ARCH} == "powerpc") +SUBDIRS+= gprof +.endif + # Used by the GNU Makefile ALL_MODULES=${SUBDIRS:S/^/all-/g} INSTALL_MODULES=${SUBDIRS:S/^/install-/g} |