From 21e2ac4808d4db44d34ac4c04f612fb5b36f2986 Mon Sep 17 00:00:00 2001 From: Dilawar Singh <dilawars@ncbs.res.in> Date: Sun, 17 Dec 2017 14:23:32 +0530 Subject: [PATCH] Removed duplicate script. --- build_moose-core.sh.in | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100755 build_moose-core.sh.in diff --git a/build_moose-core.sh.in b/build_moose-core.sh.in deleted file mode 100755 index 57d0e682..00000000 --- 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 -) - -- GitLab