diff options
author | Ganael LAPLANCHE <martymac@FreeBSD.org> | 2017-03-07 12:44:41 +0000 |
---|---|---|
committer | Ganael LAPLANCHE <martymac@FreeBSD.org> | 2017-03-07 12:44:41 +0000 |
commit | d1a60db80b89cf0376d3630fc0e518a993061a6e (patch) | |
tree | 6407da0d51004c8f3d977d8425b33795bc017b49 /devel/tbb/files/patch-common.inc | |
parent | Move ${PREFIX}/libdata/pkgconfig ahead of ${PREFIX}/lib/pkgconfig in pkgconf (diff) |
Update devel/tbb to 2017.5
Also bring the following changes:
- Fetch distfiles from Github
- Bump dependent ports' PORTREVISIONs
Notes
Notes:
svn path=/head/; revision=435599
Diffstat (limited to 'devel/tbb/files/patch-common.inc')
-rw-r--r-- | devel/tbb/files/patch-common.inc | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/devel/tbb/files/patch-common.inc b/devel/tbb/files/patch-common.inc deleted file mode 100644 index 1c28b28cd9cf..000000000000 --- a/devel/tbb/files/patch-common.inc +++ /dev/null @@ -1,26 +0,0 @@ -Accept absolute paths for $compiler variable (and so for $CC) - ---- build/common.inc.orig 2016-09-22 10:28:03.000000000 +0000 -+++ build/common.inc 2017-01-05 21:44:56.121147000 +0000 -@@ -106,17 +106,17 @@ - target:=$(tbb_os) - endif - # process host/target compiler-dependent build configuration -- ifeq (,$(wildcard $(tbb_root)/build/$(target).$(compiler).inc)) -- $(error "$(compiler)" is not supported on $(target). Add build/$(target).$(compiler).inc file with compiler-specific settings. ) -+ ifeq (,$(wildcard $(tbb_root)/build/$(target).$(notdir $(compiler)).inc)) -+ $(error "$(notdir $(compiler))" is not supported on $(target). Add build/$(target).$(notdir $(compiler)).inc file with compiler-specific settings. ) - endif -- include $(tbb_root)/build/$(target).$(compiler).inc -+ include $(tbb_root)/build/$(target).$(notdir $(compiler)).inc - endif - - ifneq ($(BUILDING_PHASE),1) - # definitions for top-level Makefiles - origin_build_dir:=$(origin tbb_build_dir) - tbb_build_dir?=$(tbb_root)$(SLASH)build -- export tbb_build_prefix?=$(tbb_os)_$(arch)_$(compiler)_$(runtime)$(CPF_SUFFIX) -+ export tbb_build_prefix?=$(tbb_os)_$(arch)_$(notdir $(compiler))_$(runtime)$(CPF_SUFFIX) - work_dir=$(tbb_build_dir)$(SLASH)$(tbb_build_prefix) - endif # BUILDING_PHASE != 1 - |