diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2022-07-03 21:46:21 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2022-07-03 21:46:55 -0700 |
commit | 8b7422293dcf9cc62518dcbc49239b6e637b6b74 (patch) | |
tree | b7b9227e6bd4d9d56e703916d0cd34f0c3183a24 /gkbuilds | |
parent | Merge Enable threaded XZ compression by default (diff) | |
download | genkernel-8b7422293dcf9cc62518dcbc49239b6e637b6b74.tar.gz genkernel-8b7422293dcf9cc62518dcbc49239b6e637b6b74.tar.bz2 genkernel-8b7422293dcf9cc62518dcbc49239b6e637b6b74.zip |
gkbuilds/boost-build.gkbuild: upstream boost flags changed
Upstream boost changed the flags to use 'off' instead of 'none'.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Closes: https://bugs.gentoo.org/854480
Diffstat (limited to 'gkbuilds')
-rw-r--r-- | gkbuilds/boost-build.gkbuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gkbuilds/boost-build.gkbuild b/gkbuilds/boost-build.gkbuild index 03d1f88..0e06ba7 100644 --- a/gkbuilds/boost-build.gkbuild +++ b/gkbuilds/boost-build.gkbuild @@ -53,6 +53,6 @@ src_install() { find "${D}/usr/share/boost-build" -iname "*.py" -delete \ || die "Failed to remove python files" - echo 'variant gentoorelease : release : <optimization>none <debug-symbols>none <runtime-link>shared ;' > "${D}/usr/share/boost-build/site-config.jam" \ + echo 'variant gentoorelease : release : <optimization>off <debug-symbols>off <runtime-link>shared ;' > "${D}/usr/share/boost-build/site-config.jam" \ || die "Failed to create '${D}/usr/share/boost-build/site-config.jam'!" } |