From 51af5f0eb4cddbe6aa7953717873691d77aae9ff Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Wed, 10 Jul 2019 23:40:16 +0100 Subject: gentoo resync : 11.07.2019 --- .../bglibs/files/bglibs-1.106-parallel-fix.patch | 61 ---------------------- 1 file changed, 61 deletions(-) delete mode 100644 dev-libs/bglibs/files/bglibs-1.106-parallel-fix.patch (limited to 'dev-libs/bglibs/files') diff --git a/dev-libs/bglibs/files/bglibs-1.106-parallel-fix.patch b/dev-libs/bglibs/files/bglibs-1.106-parallel-fix.patch deleted file mode 100644 index 30c13e8c75fa..000000000000 --- a/dev-libs/bglibs/files/bglibs-1.106-parallel-fix.patch +++ /dev/null @@ -1,61 +0,0 @@ -Forward port to 1.106 by Thilo Bangert -Fixes for parallel compile. - -- Redirection straight to an output target that is later used for dependancies - is not safe. The output file must be come into existence atomically. - -Signed-off-by: Robin H. Johnson - -diff -Naur bglibs-1.106.orig/Makefile bglibs-1.106/Makefile ---- bglibs-1.106.orig/Makefile 2009-11-20 11:52:29.000000000 +0100 -+++ bglibs-1.106/Makefile 2009-11-20 11:56:01.000000000 +0100 -@@ -152,37 +152,43 @@ - ./compile crc-gentab.c - - crc/crc16_arc_table.c: crc-gentab -- ./crc-gentab crc16_arc 16 0x8005 reflected >$@ -+ ./crc-gentab crc16_arc 16 0x8005 reflected >$@.tmp -+ mv $@.tmp $@ - - crc/crc16_arc_table.lo crc/crc16_arc_table.o: ltcompile crc/crc16_arc_table.c - ./ltcompile crc/crc16_arc_table.c - - crc/crc16_ccitt_table.c: crc-gentab -- ./crc-gentab crc16_ccitt 16 0x1021 normal >$@ -+ ./crc-gentab crc16_ccitt 16 0x1021 normal >$@.tmp -+ mv $@.tmp $@ - - crc/crc16_ccitt_table.lo crc/crc16_ccitt_table.o: ltcompile crc/crc16_ccitt_table.c - ./ltcompile crc/crc16_ccitt_table.c - - crc/crc16_xmodem_table.c: crc-gentab -- ./crc-gentab crc16_xmodem 16 0x8408 reflected >$@ -+ ./crc-gentab crc16_xmodem 16 0x8408 reflected >$@.tmp -+ mv $@.tmp $@ - - crc/crc16_xmodem_table.lo crc/crc16_xmodem_table.o: ltcompile crc/crc16_xmodem_table.c - ./ltcompile crc/crc16_xmodem_table.c - - crc/crc32_table.c: crc-gentab -- ./crc-gentab crc32 32 0x04C11DB7 reflected >$@ -+ ./crc-gentab crc32 32 0x04C11DB7 reflected >$@.tmp -+ mv $@.tmp $@ - - crc/crc32_table.lo crc/crc32_table.o: ltcompile crc/crc32_table.c - ./ltcompile crc/crc32_table.c - - crc/crc32c_table.c: crc-gentab -- ./crc-gentab crc32c 32 0x1EDC6F41 reflected >$@ -+ ./crc-gentab crc32c 32 0x1EDC6F41 reflected >$@.tmp -+ mv $@.tmp $@ - - crc/crc32c_table.lo crc/crc32c_table.o: ltcompile crc/crc32c_table.c - ./ltcompile crc/crc32c_table.c - - crc/crc64_table.c: crc-gentab -- ./crc-gentab crc64 64 0x42F0E1EBA9EA3693 normal >$@ -+ ./crc-gentab crc64 64 0x42F0E1EBA9EA3693 normal >$@.tmp -+ mv $@.tmp $@ - - crc/crc64_table.lo crc/crc64_table.o: ltcompile crc/crc64_table.c - ./ltcompile crc/crc64_table.c -- cgit v1.2.3