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:
parent
bd71998654
commit
bc78044598
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=325855
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME?= libtool
|
||||
PORTVERSION= 2.4.2
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_GNU}
|
||||
MASTER_SITE_SUBDIR= libtool
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user