diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2010-09-14 10:57:26 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2010-09-14 10:57:26 +0000 |
commit | 4609a96b23da6a4d4eaf66027c3d973c3fabb994 (patch) | |
tree | eeab4716e39f3f993e47ae1cdec704801febcf4e | |
parent | - Reset maintainership (diff) |
- Respect CXX for linking
PR: ports/150051
Submitted by: Andriy Gapon <avg@icyb.net.ua>
Notes
Notes:
svn path=/head/; revision=261138
-rw-r--r-- | devel/tmake/files/patch-aa | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/devel/tmake/files/patch-aa b/devel/tmake/files/patch-aa index 67fdc0bb03c4..84425603dd5d 100644 --- a/devel/tmake/files/patch-aa +++ b/devel/tmake/files/patch-aa @@ -1,6 +1,6 @@ ---- lib/unix/generic.t Mon Dec 4 03:26:06 2000 -+++ lib/unix/generic.t.new Mon Jan 15 11:42:17 2001 -@@ -205,10 +205,10 @@ +--- lib/unix/generic.t.orig 2000-12-04 04:26:06.000000000 +0200 ++++ lib/unix/generic.t 2010-08-27 22:54:27.797820407 +0300 +@@ -205,13 +205,13 @@ ####### Compiler, tools and options @@ -14,4 +14,8 @@ +CXXFLAGS+= #$ Expand("TMAKE_CXXFLAGS"); ExpandGlue("DEFINES","-D"," -D",""); INCPATH = #$ ExpandPath("INCPATH","-I"," -I",""); #$ Config("staticlib") && DisableOutput(); - LINK = #$ Expand("TMAKE_LINK"); +-LINK = #$ Expand("TMAKE_LINK"); ++LINK = $(CXX) + LFLAGS = #$ Expand("TMAKE_LFLAGS"); + LIBS = $(SUBLIBS) #$ Expand("TMAKE_LIBDIR_FLAGS"); Expand("TMAKE_LIBS"); + #$ Config("staticlib") && EnableOutput(); |