annotate sources/patches/binutils-screwinfo.patch @ 1703:828d2e318e26 draft

David Halls pointed out we're not actually enabling Thread Local Storage support in the uClibc baseconfig, so do that.
author Rob Landley <rob@landley.net>
date Mon, 27 Oct 2014 22:00:11 -0500
parents 49be0eeedda9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1545
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
1 The binutils build notices that makeinfo is missing, but fails anyway, breaking
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
2 the build. Make it stop.
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
3
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
4 The "info" file format is obsolete (similar to "gopher"), was never used
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
5 by anyone but the FSF, and failed to even replace man pages (which are
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
6 now available in HTML).
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
7
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
8 --- binutils-2.18/missing 2005-07-13 20:24:56.000000000 -0500
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
9 +++ binutils-2.18/missing 2008-08-11 02:05:47.000000000 -0500
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
10 @@ -299,7 +299,7 @@
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
11 fi
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
12 # If the file does not exist, the user really needs makeinfo;
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
13 # let's fail without touching anything.
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
14 - test -f $file || exit 1
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
15 + test -f $file || exit 0
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
16 touch $file
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
17 ;;
49be0eeedda9 Upgrade binutils to the last GPLv2 commit in the .git repository (397a64b3, right before they poisoned gas). This includes the -Bsymbolic-functions thing musl needs (and oddly enough the first drop of armv7l support).
Rob Landley <rob@landley.net>
parents:
diff changeset
18