From c79fb054c2efc966ddf973f90477569c010fe087 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 21 Aug 2014 16:55:42 +0200 Subject: [PATCH] Lmod.build: removed* --- scripts/Lmod.build | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100755 scripts/Lmod.build diff --git a/scripts/Lmod.build b/scripts/Lmod.build deleted file mode 100755 index 7ac7a72..0000000 --- a/scripts/Lmod.build +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -source "$(dirname $0)/../lib/libem.bash" - -function em.configure() { - cd "${MODULE_SRCDIR}" - "${MODULE_SRCDIR}"/configure \ - --prefix="${EM_PREFIX}/core" \ - --with-module-root-path="${MODULEPATH_ROOT}" \ - || exit 1 -} - -function em.build() { - cd "${MODULE_SRCDIR}" - - make -j ${JOBS} -} - -# use system gcc to compile -declare -rx CC=gcc - -em.supported_os '' -em.add_to_family 'Tools' -em.set_build_dependencies "lua" -em.make_all -em.cleanup_src