- Remove abort() warning in manual (#1615608)
This commit is contained in:
Carlos O'Donell 2018-08-13 22:43:08 -04:00
parent 08e1b1ab33
commit bebdebbdc3
3 changed files with 47 additions and 21 deletions

22
glibc-rh1615608.patch Normal file
View File

@ -0,0 +1,22 @@
Please see the following bug for a complete summary:
https://bugzilla.redhat.com/show_bug.cgi?id=1615608
Index: glibc-2.28/manual/startup.texi
===================================================================
--- glibc-2.28.orig/manual/startup.texi
+++ glibc-2.28/manual/startup.texi
@@ -1005,14 +1005,6 @@ This function actually terminates the pr
intercept this signal; see @ref{Signal Handling}.
@end deftypefun
-@c Put in by rms. Don't remove.
-@cartouche
-@strong{Future Change Warning:} Proposed Federal censorship regulations
-may prohibit us from giving you information about the possibility of
-calling this function. We would be required to say that this is not an
-acceptable way of terminating a program.
-@end cartouche
-
@node Termination Internals
@subsection Termination Internals

View File

@ -1,6 +1,6 @@
%define glibcsrcdir glibc-2.28 %define glibcsrcdir glibc-2.28
%define glibcversion 2.28 %define glibcversion 2.28
%define glibcrelease 4%{?dist} %define glibcrelease 5%{?dist}
# Pre-release tarballs are pulled in from git using a command that is # Pre-release tarballs are pulled in from git using a command that is
# effectively: # effectively:
# #
@ -138,29 +138,30 @@ Source12: ChangeLog.old
# - See each individual patch file for origin and upstream status. # - See each individual patch file for origin and upstream status.
# - For new patches follow template.patch format. # - For new patches follow template.patch format.
############################################################################## ##############################################################################
Patch0001: glibc-post_upgrade.patch Patch1: glibc-post_upgrade.patch
Patch0002: glibc-fedora-nscd.patch Patch2: glibc-fedora-nscd.patch
Patch0003: glibc-rh697421.patch Patch3: glibc-rh697421.patch
Patch0004: glibc-fedora-linux-tcsetattr.patch Patch4: glibc-fedora-linux-tcsetattr.patch
Patch0005: glibc-rh741105.patch Patch5: glibc-rh741105.patch
Patch0006: glibc-fedora-localedef.patch Patch6: glibc-fedora-localedef.patch
Patch0007: glibc-fedora-nis-rh188246.patch Patch7: glibc-fedora-nis-rh188246.patch
Patch0008: glibc-fedora-manual-dircategory.patch Patch8: glibc-fedora-manual-dircategory.patch
Patch0009: glibc-rh827510.patch Patch9: glibc-rh827510.patch
Patch0010: glibc-fedora-locarchive.patch Patch10: glibc-fedora-locarchive.patch
Patch0011: glibc-fedora-streams-rh436349.patch Patch11: glibc-fedora-streams-rh436349.patch
Patch0012: glibc-rh819430.patch Patch12: glibc-rh819430.patch
Patch0013: glibc-fedora-localedata-rh61908.patch Patch13: glibc-fedora-localedata-rh61908.patch
Patch0014: glibc-fedora-__libc_multiple_libcs.patch Patch14: glibc-fedora-__libc_multiple_libcs.patch
Patch0015: glibc-rh1070416.patch Patch15: glibc-rh1070416.patch
Patch0016: glibc-nscd-sysconfig.patch Patch16: glibc-nscd-sysconfig.patch
Patch0017: glibc-cs-path.patch Patch17: glibc-cs-path.patch
Patch0018: glibc-c-utf8-locale.patch Patch18: glibc-c-utf8-locale.patch
Patch23: glibc-python3.patch Patch23: glibc-python3.patch
Patch24: glibc-with-nonshared-cflags.patch Patch24: glibc-with-nonshared-cflags.patch
Patch25: glibc-asflags.patch Patch25: glibc-asflags.patch
Patch26: glibc-ldflags.patch Patch26: glibc-ldflags.patch
Patch27: glibc-rh1614705.patch Patch27: glibc-rh1614705.patch
Patch28: glibc-rh1615608.patch
############################################################################## ##############################################################################
# Continued list of core "glibc" package information: # Continued list of core "glibc" package information:
@ -1876,6 +1877,9 @@ fi
%endif %endif
%changelog %changelog
* Mon Aug 13 2018 Carlos O'Donell <carlos@redhat.com> - 2.28-5
- Remove abort() warning in manual (#1615608)
* Fri Aug 10 2018 Florian Weimer <fweimer@redhat.com> - 2.28-4 * Fri Aug 10 2018 Florian Weimer <fweimer@redhat.com> - 2.28-4
- Fix regression in readdir64@GLIBC_2.1 compat symbol (#1614705) - Fix regression in readdir64@GLIBC_2.1 compat symbol (#1614705)

View File

@ -4,7 +4,7 @@ export QUILT_PATCHES=$PWD
# Extract source file name from sources file, # Extract source file name from sources file,
# and assume it's the same name as the directory. # and assume it's the same name as the directory.
source=`awk -F '[() ]+' '/^[A-Z0-9]+ /{print $2}; /^[0-9a-f]+ /{print $2}' sources` source=`awk -F '[() ]+' '/^[A-Z0-9]+ /{print $2}; /^[0-9a-f]+ /{print $2}' sources`
srcdir=${source%.tar.gz} srcdir=${source%.tar.xz}
if [ "$1" == "-f" ] && [ -d "$srcdir" ]; then if [ "$1" == "-f" ] && [ -d "$srcdir" ]; then
echo Cleaning up $srcdir echo Cleaning up $srcdir
rm -rf $srcdir rm -rf $srcdir
@ -14,7 +14,7 @@ if [ -d "$srcdir" ]; then
echo "ERROR: Source directory $srcdir already exists. Use -f to force cleanup step." echo "ERROR: Source directory $srcdir already exists. Use -f to force cleanup step."
exit 1 exit 1
fi fi
tar zxvf $source tar Jxvf $source
echo "Entering $srcdir" echo "Entering $srcdir"
pushd $srcdir pushd $srcdir
# Apply all patches. # Apply all patches.