From: Arnout Vandecappelle Date: Sun, 4 Oct 2015 12:28:45 +0000 (+0100) Subject: perl: Remove ccache handling X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=906a01128c3537c0e255bb0c66384fbde4ac6a97;p=buildroot.git perl: Remove ccache handling Now the ccache handling has moved to the toolchain wrapper, it is no longer necessary to pass TARGET_CC_NOCCACHE. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) Reviewed-by: Romain Naour Signed-off-by: Peter Korsgaard --- diff --git a/package/perl/perl.mk b/package/perl/perl.mk index b9f90e48cd..7192700410 100644 --- a/package/perl/perl.mk +++ b/package/perl/perl.mk @@ -45,13 +45,12 @@ PERL_DEPENDENCIES += gdbm endif # We have to override LD, because an external multilib toolchain ld is not -# wrapped to provide the required sysroot options. We also can't use ccache -# because the configure script doesn't support it. +# wrapped to provide the required sysroot options. PERL_CONF_OPTS = \ --target=$(GNU_TARGET_NAME) \ --target-tools-prefix=$(TARGET_CROSS) \ --prefix=/usr \ - -Dld="$(TARGET_CC_NOCCACHE)" \ + -Dld="$(TARGET_CC)" \ -Dccflags="$(TARGET_CFLAGS)" \ -Dldflags="$(TARGET_LDFLAGS) -lm" \ -Dmydomain="" \