diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-01-26 22:42:49 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-01-26 22:47:07 +0000 |
commit | a2478718a9960f7844eee45e6b140fd071447428 (patch) | |
tree | 134afbab008be73f3edfdb16a3f2030480ce5be5 /eclass/flag-o-matic.eclass | |
parent | profiles: alpha/arm/hppa/ia64/ppc32/sparc: Mask media-gfx/gimp[heif] (diff) | |
download | gentoo-a2478718a9960f7844eee45e6b140fd071447428.tar.gz gentoo-a2478718a9960f7844eee45e6b140fd071447428.tar.bz2 gentoo-a2478718a9960f7844eee45e6b140fd071447428.zip |
flag-o-matic.eclass: fix probe when CC points to absolute path
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'eclass/flag-o-matic.eclass')
-rw-r--r-- | eclass/flag-o-matic.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass index 0aec22c83f2c..ebfc49bf30b7 100644 --- a/eclass/flag-o-matic.eclass +++ b/eclass/flag-o-matic.eclass @@ -474,8 +474,8 @@ test-flag-PROG() { cmdline_extra+=(-xc) ;; esac - local test_in=${T}/test-flag-${comp}.${lang} - local test_out=${T}/test-flag-${comp}.exe + local test_in=${T}/test-flag.${lang} + local test_out=${T}/test-flag.exe printf "%s\n" "${in_src}" > "${test_in}" || return 1 |