diff options
author | Joseph Myers <joseph@codesourcery.com> | 2015-10-26 22:46:04 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2015-10-26 22:46:04 +0000 |
commit | f5659917f9cbdbd162870b858e527506687bfb1f (patch) | |
tree | e4c861dd939b329e63ef5551cd2c321e89d22975 /config.make.in | |
parent | 8c0c01dbe70e00b6b85425d0c5c22b30bd2fc1ac (diff) | |
download | glibc-f5659917f9cbdbd162870b858e527506687bfb1f.tar glibc-f5659917f9cbdbd162870b858e527506687bfb1f.tar.gz glibc-f5659917f9cbdbd162870b858e527506687bfb1f.tar.bz2 glibc-f5659917f9cbdbd162870b858e527506687bfb1f.zip |
Remove support for removing glibc 2.0 headers.
There is a configure test for the presence of glibc 2.0 headers (that
were renamed / no longer installed in glibc 2.1) and associated
support for removing them on "make install".
Normal practice for subsequent removal / renaming of installed files
has been not to do anything special about removing them; if you want
installed files from an old installation removed reliably, you need to
use a packaging system that tracks what files were installed by a
previous glibc package (via installing in an intermediate directory
with install_root). I think it's been long enough since 2.0 that it's
not particularly useful to have that special logic for those old
headers either; this patch removes it.
Tested for x86_64 and x86 (testsuite, and that installed shared
libraries are unchanged by the patch).
* configure.ac (old_glibc_headers): Remove configure test.
* configure: Regenerated.
* config.make.in (old-glibc-headers): Remove variable.
* Makefile [!$(install_root) && $(old-glibc-headers) = yes]
(install): Remove dependency on remove-old-headers.
(headers2_0): Remove variable.
(remove-old-headers): Remove rule.
Diffstat (limited to 'config.make.in')
-rw-r--r-- | config.make.in | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/config.make.in b/config.make.in index a791922738..5e4bbc8772 100644 --- a/config.make.in +++ b/config.make.in @@ -52,7 +52,6 @@ have-z-execstack = @libc_cv_z_execstack@ have-protected-data = @libc_cv_protected_data@ with-fp = @with_fp@ enable-timezone-tools = @enable_timezone_tools@ -old-glibc-headers = @old_glibc_headers@ unwind-find-fde = @libc_cv_gcc_unwind_find_fde@ have-forced-unwind = @libc_cv_forced_unwind@ have-fpie = @libc_cv_fpie@ |