diff options
author | 1998-06-06 08:07:59 +0000 | |
---|---|---|
committer | 1998-06-06 08:07:59 +0000 | |
commit | a47c8f8723c1b1089101a345bec55700789e82bb (patch) | |
tree | b33a39d6edc22b8eb1a5f0b7bc965bd5f0683a18 | |
parent | more system types we know (diff) | |
download | wireguard-openbsd-a47c8f8723c1b1089101a345bec55700789e82bb.tar.xz wireguard-openbsd-a47c8f8723c1b1089101a345bec55700789e82bb.zip |
disable gprof on alpha... again.. texinfo problems
-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} |