Merge branch 'master' of git://git.nousoft.org/~thomas/factor

Doug Coleman 2009-06-19 14:21:27 -05:00
commit 60e610f9cc
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=gcc;;
*) CC=${CC:=gcc};;
esac
}