diff options
author | Florian Weimer <fweimer@redhat.com> | 2018-08-21 11:43:35 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2018-08-21 11:43:35 +0200 |
commit | c7627f41baaeb7f1a7b73ff66ef48eaafc1990f6 (patch) | |
tree | daaeb30a4905b951fa44b70cdaf61e7d6986b93b | |
parent | ef939d928a5b9f2d9b103b16cb7acc1d2fbcbb80 (diff) | |
download | glibc-c7627f41baaeb7f1a7b73ff66ef48eaafc1990f6.zip glibc-c7627f41baaeb7f1a7b73ff66ef48eaafc1990f6.tar.gz glibc-c7627f41baaeb7f1a7b73ff66ef48eaafc1990f6.tar.bz2 |
Makeconfig: Do not sort and deduplicate +cflags [BZ # 17248]
The original intent behind this is unclear. It interferes with flags
that has to be ordered in a particular way.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makeconfig | 3 |
2 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,10 @@ 2018-08-21 Florian Weimer <fweimer@redhat.com> + [BZ #17248] + * Makeconfig (+cflags): Do not sort (and deduplicate). + +2018-08-21 Florian Weimer <fweimer@redhat.com> + * debug/readlink_chk.c (__readlink_chk): Always call __readlink. * sysdeps/unix/sysv/linux/generic/readlink_chk.c: Remove file. @@ -902,9 +902,6 @@ endif # $(+cflags) == "" $(+stack-protector) +gcc-nowarn := -w -# Don't duplicate options if we inherited variables from the parent. -+cflags := $(sort $(+cflags)) - # Each sysdeps directory can contain header files that both will be # used to compile and will be installed. Each can also contain an # include/ subdirectory, whose header files will be used to compile |