1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

- Add support for lang/clang33 from ports which installs it's binaries as

clang33 and clang++33. Right now libtool fails for various ports and aks
for a "--tag" flag because it tries to detect tag based on the binary name
but doesn't know about clang33.

PR:		ports/179809
Submitted by:	myself
Approved by:	maintainer timeout (9 weeks)
This commit is contained in:
Bernhard Froehlich 2013-09-01 13:02:56 +00:00
parent bd71998654
commit bc78044598
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=325855
2 changed files with 3 additions and 2 deletions

View File

@ -7,6 +7,7 @@
PORTNAME?= libtool
PORTVERSION= 2.4.2
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= libtool

View File

@ -4,8 +4,8 @@
$opt_debug
+
+ # FreeBSD-specific: where we install compilers with non-standard names
+ tag_compilers_CC="*cc cc* *gcc gcc* clang"
+ tag_compilers_CXX="*c++ c++* *g++ g++* clang++"
+ tag_compilers_CC="*cc cc* *gcc gcc* clang*"
+ tag_compilers_CXX="*c++ c++* *g++ g++* clang++*"
+ base_compiler=`set -- "$@"; echo $1`
+
+ # If $tagname isn't set, then try to infer if the default "CC" tag applies