summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2008-01-14 22:51:13 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2008-01-14 22:51:13 +0000
commitea2aa03ab2ea9e57ed9db458346e303e1e7a5f28 (patch)
tree143c0f98105f247fc13e3f4ee066386ed00f89d4 /gnu
parent0e45ff2bdef56ef7cb632aecc362052c4c05fe87 (diff)
Fix a race by making maybe-all-bfd depend on all-bfd and maybe-all-opcodes
depend on all-opcodes. Problem found by espie@. ok espie@
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/binutils/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/binutils/Makefile.in b/gnu/usr.bin/binutils/Makefile.in
index 3d06a7b695e..aa42127e5df 100644
--- a/gnu/usr.bin/binutils/Makefile.in
+++ b/gnu/usr.bin/binutils/Makefile.in
@@ -17879,7 +17879,7 @@ configure-bfd:
|| exit 1
.PHONY: all-bfd maybe-all-bfd
-maybe-all-bfd:
+maybe-all-bfd: all-bfd
all-bfd: configure-bfd
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
@@ -17947,7 +17947,7 @@ configure-opcodes:
|| exit 1
.PHONY: all-opcodes maybe-all-opcodes
-maybe-all-opcodes:
+maybe-all-opcodes: all-opcodes
all-opcodes: configure-opcodes
@r=`${PWD_COMMAND}`; export r; \
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \