Fabian Guter wrote:
Hallo dam,
In case your package uses auto*, then configure script most probably
honours CC, CXX, CPP and CXXPP environment variables. Put
# Force usage of 4.1
export CC=gcc-4.1
export CXX=g++-4.1
export CPP=cpp-4.1
export CXXPP=cpp-4.1
before invoking configure and you should be fine.
The package at least uses make...
The Makefile looks like this:
-----
# Names of executables
AS = gas
AR = ar
LD = ld
ZIP = zip
CXX = g++
You can override these inconditionnally define variables no using
environment but using make.
Have a look at this makefile:
$ cat Makefile
A=a
B?=b
.PHONY: all
all:
@echo "$(A) and $(B)"
$ make
a and b
$ make A=whatever
whatever and b
$ A=whatever make
a and b
$ make B=uh
a and uh
$ B=uh make
a and uh
HTH,
Thomas
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]