mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 21:45:00 +00:00
Fix bash path in a shebang (#153)
"/bin/bash" is a Linuxism. "/usr/bin/env bash" is portable.
This commit is contained in:
parent
34ecafd457
commit
c47cf1cf5a
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
boost_version=$(grep 'define.*BOOST_LIB_VERSION' ../../boost/version.hpp | sed 's/.*"\([^"]*\)".*/\1/')
|
||||
echo Boost version tag = $boost_version
|
||||
(cd ../../libs/accumulators/doc && bjam -a --hash) 2>&1 | tee build.log
|
||||
|
|
Loading…
Add table
Reference in a new issue