diff options
author | bms <bms@FreeBSD.org> | 2008-02-15 06:51:27 +0800 |
---|---|---|
committer | bms <bms@FreeBSD.org> | 2008-02-15 06:51:27 +0800 |
commit | e1f15a3ff69253a457166faa4f8040f3a2d7e5a7 (patch) | |
tree | 631994a23e40f2351a0f4ad558452cd71943782f | |
parent | fbcb8e69ef0c22a661a043b2f759285b7e9185bc (diff) | |
download | freebsd-ports-gnome-e1f15a3ff69253a457166faa4f8040f3a2d7e5a7.tar.gz freebsd-ports-gnome-e1f15a3ff69253a457166faa4f8040f3a2d7e5a7.tar.zst freebsd-ports-gnome-e1f15a3ff69253a457166faa4f8040f3a2d7e5a7.zip |
Add temporary workaround for build issue seen with FreeBSD/amd64:
https://zigzag.cs.msu.su:7813/boost.build/ticket/169
-rw-r--r-- | devel/boost_build/files/patch-tools__gcc.jam | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/boost_build/files/patch-tools__gcc.jam b/devel/boost_build/files/patch-tools__gcc.jam new file mode 100644 index 000000000000..f53c170be502 --- /dev/null +++ b/devel/boost_build/files/patch-tools__gcc.jam @@ -0,0 +1,11 @@ +--- tools/gcc.jam.orig 2008-02-14 22:50:19.000000000 +0000 ++++ tools/gcc.jam 2008-02-14 22:50:44.000000000 +0000 +@@ -155,7 +155,7 @@ + # will pick the right onces. + # Note that we don't provide a clean way to build 32-bit binary + # with 64-bit compiler, but user can always pass -m32 manually. +- local lib_path = $(root)/bin $(root)/lib $(root)/lib32 $(root)/lib64 ; ++ local lib_path = /lib $(root)/bin $(root)/lib $(root)/lib32 $(root)/lib64 ; + if $(.debug-configuration) + { + ECHO notice: using gcc libraries :: $(condition) :: $(lib_path) ; |