diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2015-09-20 19:41:05 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2015-09-20 22:33:45 +0300 |
commit | 47f756156f33d56612a418bd42471e5335743cf5 (patch) | |
tree | e3fe78681a031ca6272bd3f0b5676986f06fa828 | |
parent | 0786b5729320cf7177f94c58ed47cc0c6d3f6f80 (diff) | |
download | gcc-5-47f756156f33d56612a418bd42471e5335743cf5.tar.gz |
Move libssp_nonshared.a first
libssp*.a matches libssp_nonshared.a
It will never end because everyone uses glibc.
-rw-r--r-- | debian/rules.d/binary-libgcc.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/rules.d/binary-libgcc.mk b/debian/rules.d/binary-libgcc.mk index 6fb874a..d920f2e 100644 --- a/debian/rules.d/binary-libgcc.mk +++ b/debian/rules.d/binary-libgcc.mk @@ -227,12 +227,12 @@ define __do_gcc_devels2 $(if $(filter yes, $(with_lib$(1)gmath)), $(call install_gcc_lib,libgcc-math,$(GCC_SONAME),$(1),$(2)) ) - $(if $(filter yes, $(with_libssp)), - $(call install_gcc_lib,libssp,$(SSP_SONAME),$(1),$(2)) - ) $(if $(filter yes, $(with_ssp)), mv $(4)/libssp_nonshared.a debian/$(2)/$(3)/; ) + $(if $(filter yes, $(with_libssp)), + $(call install_gcc_lib,libssp,$(SSP_SONAME),$(1),$(2)) + ) $(if $(filter yes, $(with_gomp)), $(call install_gcc_lib,libgomp,$(GOMP_SONAME),$(1),$(2)) ) |