From 053c0a8615c8e08aabca76fb9e581de1aef4a9d6 Mon Sep 17 00:00:00 2001 From: Philip Jameson Date: Tue, 12 Sep 2017 11:49:14 -0700 Subject: [PATCH] Remove unneeded parts of build script Summary: Remove an unneeded autoconf flag, as it causes the build to fail on missing boost-context Reviewed By: yfeldblum Differential Revision: D5815646 fbshipit-source-id: cb6544593de9fbf8248506b09c56412b4635b30c --- folly/build/buck_run_autoconf.sh | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/folly/build/buck_run_autoconf.sh b/folly/build/buck_run_autoconf.sh index c6a57769..2e9efb0e 100644 --- a/folly/build/buck_run_autoconf.sh +++ b/folly/build/buck_run_autoconf.sh @@ -12,23 +12,10 @@ get_ldflags() { done } -get_boost_libdirs() { - # autoconf's boost detection seems to require a path to boost libs - # if they're not in the system directories - for i in "$@"; do - echo "$i" | perl -n -e 'print if s,(.*)/libboost_.*\.(so|dylib|dll).*,\1,' - done -} - # This is an extra linker flag that buck appends on OSX that's not valid # This probably requires a patch to buck LDFLAGS=$(get_ldflags "$@" | uniq | tr '\n' ' ' | perl -pe 's;-Xlinker \@executable_path\S*;;g') -boost_libdir=$(get_boost_libdirs "$@"| head -n 1) -if [ ! -z "$boost_libdir" ]; then - BOOST_FLAG="--with-boost-libdir=$boost_libdir" -fi - export LDFLAGS export BOOST_LDFLAGS="$LDFLAGS" export BOOST_CPPFLAGS="$CPPFLAGS" -- 2.34.1