Fix DISTRO=gcc44-generic make shortcut to use gcc-4.4 properly (-V 4.4 does not work for linking)

This commit is contained in:
Couriersud 2010-02-04 23:29:20 +00:00
parent 3f9738c46c
commit d128c47dee

View File

@ -94,7 +94,7 @@ LD = g++-4.2
else
ifeq ($(DISTRO),gcc44-generic)
CC = @gcc -V 4.4
LD = @g++ -V 4.4
LD = @g++-4.4
else
$(error DISTRO $(DISTRO) unknown)
endif