diff options
author | Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2024-02-11 14:51:39 +0100 |
---|---|---|
committer | Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2024-02-11 14:51:39 +0100 |
commit | 407100bffa8c66e92fd4f6bfd2a083995b9dab93 (patch) | |
tree | 9e0b0687025056c5e42960f4b33522e41d32f1dd /libgfortran | |
parent | 8f625f029b79db35b684e24961e1e824ee8ac9dd (diff) | |
download | gcc-407100bffa8c66e92fd4f6bfd2a083995b9dab93.zip gcc-407100bffa8c66e92fd4f6bfd2a083995b9dab93.tar.gz gcc-407100bffa8c66e92fd4f6bfd2a083995b9dab93.tar.bz2 |
libgfortran: avoid duplicate libraries in spec
The linking of libgcc is already present in %(liborig), so the current
situation duplicates libraries. This was not an issue until macOS's new
linker started giving warnings for such cases.
libgfortran/ChangeLog:
PR libfortran/110651
* libgfortran.spec.in: Remove duplicate libraries.
Diffstat (limited to 'libgfortran')
-rw-r--r-- | libgfortran/libgfortran.spec.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/libgfortran.spec.in b/libgfortran/libgfortran.spec.in index 95aa3f8..0ea1595 100644 --- a/libgfortran/libgfortran.spec.in +++ b/libgfortran/libgfortran.spec.in @@ -5,4 +5,4 @@ # %rename lib liborig -*lib: @LIBQUADSPEC@ -lm %(libgcc) %(liborig) +*lib: @LIBQUADSPEC@ -lm %(liborig) |