diff --git a/build_moose-core.sh.in b/build_moose-core.sh.in deleted file mode 100755 index 57d0e6828fb004cba2a6da2433926fce94a2b466..0000000000000000000000000000000000000000 --- a/build_moose-core.sh.in +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash -set -x -set -e - -# NOTICE: This file is parsed by cmake to create a shell script. Not all syntax -# will play well with cmake. -# -# CMAKE replaces @FOO@ and ${FOO} with cmake variable -# values. - -if [ -z "$MAKE" ]; then - MAKE=make -fi - -CMAKE_PYMOOSE_ARGS='' -SITE_PACKAGE=`@PYTHON_EXECUTABLE@ -c \ - "from distutils.sysconfig import get_python_lib; print(get_python_lib())"` -echo $SITE_PACKAGE - - -# If we are on DEBIAN/UBUNTU, pass --install-layout=deb to moose-core. - -echo "Building MOOSE" -( - export GSL_ROOT_DIR=@GSL_ROOT_DIR@ - export HDF5_ROOT=@HDF5_ROOT@ - cd @PYMOOSE_BUILD_DIR@ - cmake -DCMAKE_INSTALL_PREFIX=@PYMOOSE_INSTALL_DIR@ \ - -DCMAKE_BUILD_TYPE=Release \ - -DPYTHON_EXECUTABLE=@PYTHON_EXECUTABLE@ \ - @CMAKE_PYMOOSE_ARGS@ \ - @PYMOOSE_SOURCE_DIR@ - $MAKE - ctest -output-on-failure || echo "Some tests failed" - $MAKE install -) -