diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2007-12-30 12:20:59 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2007-12-30 12:20:59 +0000 |
commit | 4fb0633ba79efe6c32ccfaec107e75420c33c879 (patch) | |
tree | 86393fb8af841c8f3d140bae8ba4de4f5bc49d9a /gnu/usr.bin | |
parent | 4d0246d2321e30ab52422fef16109c891b9ff950 (diff) |
enforce install -S, avoids races with make -j:
libtool does relink some files during install, and it can happen that it
relinks stuff at the exact same time that ld is being reinstalled.
okay kettenis@
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/binutils/Makefile.bsd-wrapper | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/usr.bin/binutils/Makefile.bsd-wrapper b/gnu/usr.bin/binutils/Makefile.bsd-wrapper index 7425eb15b14..e6d62dc5c17 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.70 2007/03/26 08:19:36 jmc Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.71 2007/12/30 12:20:58 espie Exp $ NEW_BINUTILS=alpha amd64 arm hppa hppa64 i386 mips64 powerpc sh sparc sparc64 @@ -127,6 +127,7 @@ install: maninstall tooldir=${PREFIX} \ BSDSRCDIR=${BSDSRCDIR} \ INSTALL_MODULES='${INSTALL_MODULES}' \ + INSTALL_PROGRAM='install -c -S' \ INSTALL_INFO_HOST_MODULES='${INSTALL_INFO_HOST_MODULES}' \ install install-info .if ${USING_NEW_BINUTILS:L} != "yes" |