Explorar o código

Fix bash path in a shebang (#153)

"/bin/bash" is a Linuxism.  "/usr/bin/env bash" is portable.
Alan Somers %!s(int64=8) %!d(string=hai) anos
pai
achega
c47cf1cf5a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      doc/pdf/build

+ 1 - 1
doc/pdf/build

@@ -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

粤ICP备19079148号