According to the INSTALL, "The HOST_* variables override not prefixed
variables". This change makes it so, instead of previous behavior, which
was to ignore the HOST_CC environment variable.
Signed-off-by: Glenn Washburn <development@efficientek.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
grub_TRANSFORM([grub-render-label])
grub_TRANSFORM([grub-file])
+# Allow HOST_CC to override CC.
+if test "x$HOST_CC" != x; then
+ CC=$HOST_CC
+fi
+
# Optimization flag. Allow user to override.
if test "x$TARGET_CFLAGS" = x; then
TARGET_CFLAGS=-Os