diff options
author | 2024-05-04 11:35:06 +0100 | |
---|---|---|
committer | 2024-05-10 18:27:06 +0100 | |
commit | e8ba6eb2883553aec1e45c819924e3453c532fd3 (patch) | |
tree | fb1f20f5833daaf72bba26b65c8bd250bc90de71 /eclass | |
parent | perl-module.eclass: respect toolchain environment for MakeMaker (diff) | |
download | gentoo-e8ba6eb2883553aec1e45c819924e3453c532fd3.tar.gz gentoo-e8ba6eb2883553aec1e45c819924e3453c532fd3.tar.bz2 gentoo-e8ba6eb2883553aec1e45c819924e3453c532fd3.zip |
perl-module.eclass: sort toolchain vars
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/perl-module.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass index eb496e4a64df..f32c2c237d05 100644 --- a/eclass/perl-module.eclass +++ b/eclass/perl-module.eclass @@ -275,8 +275,8 @@ perl-module_src_configure() { --create_packlist=1 \ --config ar="$(tc-getAR)" \ --config cc="$(tc-getCC)" \ - --config ld="$(tc-getCC)" \ --config cpp="$(tc-getCPP)" \ + --config ld="$(tc-getCC)" \ --config nm="$(tc-getNM)" \ --config ranlib="$(tc-getRANLIB)" \ --config ccflags="${CFLAGS}" \ @@ -291,8 +291,8 @@ perl-module_src_configure() { set -- \ AR="$(tc-getAR)" \ CC="$(tc-getCC)" \ - LD="$(tc-getCC)" \ CPP="$(tc-getCPP)" \ + LD="$(tc-getCC)" \ NM="$(tc-getNM)" \ RANLIB="$(tc-getRANLIB)" \ OPTIMIZE="${CFLAGS}" \ |