openjdk: Fix a cross problem

38eea804e6c02542085c9f232cdd699d96c95a23 dropped the C and C++ compiler prefixes. Probably more work is needed to make cross work, but this at least helps preserve/establish the pattern.

authored by John Ericson and committed by Vladimír Čunát cfa4e0ac 440ac01e

+2 -2
+2 -2
pkgs/development/compilers/openjdk/8.nix
··· 110 # The configure script was confused by our passing these with full paths, 111 # so we explicitly override them to short variants. 112 + '' 113 - CC=cc 114 - CXX=c++ 115 ''; 116 117 configureFlags = [
··· 110 # The configure script was confused by our passing these with full paths, 111 # so we explicitly override them to short variants. 112 + '' 113 + CC=${stdenv.cc.targetPrefix}cc 114 + CXX=${stdenv.cc.targetPrefix}c++ 115 ''; 116 117 configureFlags = [