From: Philip Jameson Date: Tue, 12 Sep 2017 18:49:14 +0000 (-0700) Subject: Remove unneeded parts of build script X-Git-Tag: v2017.09.18.00~15 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=053c0a8615c8e08aabca76fb9e581de1aef4a9d6;p=folly.git 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 --- 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"