diff options
author | Adhemerval Zanella Netto <adhemerval.zanella@linaro.org> | 2022-12-27 18:11:44 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-03-27 13:57:55 -0300 |
commit | 91fc5b99907655bc04cf23247b5fe0ae0ca6e9eb (patch) | |
tree | 932fd1123ca41fa319483d6b6ac8be218ff59755 /iconvdata | |
parent | 3020f72618e4f1d7338cd42b8bc7b2813e961b5a (diff) | |
download | glibc-91fc5b99907655bc04cf23247b5fe0ae0ca6e9eb.tar.gz glibc-91fc5b99907655bc04cf23247b5fe0ae0ca6e9eb.tar.xz glibc-91fc5b99907655bc04cf23247b5fe0ae0ca6e9eb.zip |
Remove --with-default-link configure option
Now that there is no need to use a special linker script to hardening internal data structures, remove the --with-default-link configure option and associated definitions. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'iconvdata')
-rw-r--r-- | iconvdata/extra-module.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iconvdata/extra-module.mk b/iconvdata/extra-module.mk index ecaf507624..a816659763 100644 --- a/iconvdata/extra-module.mk +++ b/iconvdata/extra-module.mk @@ -4,7 +4,7 @@ extra-modules-left := $(strip $(filter-out $(mod),$(extra-modules-left))) extra-objs := $(extra-objs) $(patsubst %,%.os,$($(mod)-routines)) $(objpfx)$(mod).so: $(addprefix $(objpfx),$(addsuffix .os,$($(mod)-routines)))\ - $(shlib-lds) $(link-libc-deps) + $(link-libc-deps) $(build-module-asneeded) ifneq (,$(extra-modules-left)) |