]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
perl: Remove ccache handling
authorArnout Vandecappelle <arnout@mind.be>
Sun, 4 Oct 2015 12:28:45 +0000 (13:28 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Sun, 4 Oct 2015 16:22:20 +0000 (18:22 +0200)
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) <arnout@mind.be>
Reviewed-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/perl/perl.mk

index b9f90e48cd2ee1e63390b6dd7c5336711dda234d..7192700410a7d6cd25ad72cd0d3b76cbdc1f91ae 100644 (file)
@@ -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="" \