From 861ea4e193ae81f3baf8d931ca0b9c69b18ba31a Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Fri, 19 Jun 2009 15:04:06 -0500 Subject: [PATCH] Revert "Use $CC and $CPP if provided" This reverts commit 8f9c4a78a4c8bf42b63c32917c246829836368a6. --- Makefile | 4 ++-- build-support/factor.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 50cef84a21..18cb7d15c7 100755 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -CC ?= gcc -CPP ?= g++ +CC = gcc +CPP = g++ AR = ar LD = ld diff --git a/build-support/factor.sh b/build-support/factor.sh index e059a7d84f..d5b8bd5411 100755 --- a/build-support/factor.sh +++ b/build-support/factor.sh @@ -97,7 +97,7 @@ set_md5sum() { set_gcc() { case $OS in openbsd) ensure_program_installed egcc; CC=egcc;; - *) CC=${CC:=gcc};; + *) CC=gcc;; esac }