Fix precommit scripts on OSX

JerryScript-DCO-1.0-Signed-off-by: François Baldassari francois@pebble.com
This commit is contained in:
François Baldassari 2016-03-17 17:20:58 -07:00
parent e1f20ad474
commit b59af40e91

View File

@ -15,7 +15,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.
CPPCHECK_JOBS=${CPPCHECK_JOBS:=$(nproc)}
if [[ "$OSTYPE" == "linux"* ]]; then
CPPCHECK_JOBS=${CPPCHECK_JOBS:=$(nproc)}
elif [[ "$OSTYPE" == "darwin"* ]]; then
CPPCHECK_JOBS=${CPPCHECK_JOBS:=$(sysctl -n hw.ncpu)}
else
CPPCHECK_JOBS=${CPPCHECK_JOBS:=1}
fi
JERRY_CORE_DIRS=`find jerry-core -type d`
JERRY_LIBC_DIRS=`find jerry-libc -type d`