Revert "Use $CC and $CPP if provided"

This reverts commit 8f9c4a78a4.
Slava Pestov 2009-06-19 15:04:06 -05:00
parent 041946e7d5
commit 861ea4e193
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
CC ?= gcc
CPP ?= g++
CC = gcc
CPP = g++
AR = ar
LD = ld

View File

@ -97,7 +97,7 @@ set_md5sum() {
set_gcc() {
case $OS in
openbsd) ensure_program_installed egcc; CC=egcc;;
*) CC=${CC:=gcc};;
*) CC=gcc;;
esac
}