From c45982a67f906ec1c84a94213ca1819ab175809f Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 30 Oct 2020 18:10:20 +0100 Subject: [PATCH] modulebuild.conf.in: OS specific config removed --- config/modbuild.conf.in | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/config/modbuild.conf.in b/config/modbuild.conf.in index b1e6090..60d33c3 100644 --- a/config/modbuild.conf.in +++ b/config/modbuild.conf.in @@ -1,12 +1,11 @@ #!/bin/bash - -# -# define PMODULES_ROOT only if it has not been passed as argument -# to build/install scripts # : ${PMODULES_ROOT:=@PMODULES_ROOT@} : ${PMODULES_DISTFILESDIR:=@PMODULES_DISTFILESDIR@} : ${PMODULES_TMPDIR:=@PMODULES_TMPDIR@} +export PMODULES_ROOT +export PMODULES_DISTFILESDIR +export PMODULES_TMPDIR declare -x PMODULES_CONFIG_DIR='config' declare -x PMODULES_MODULEFILES_DIR='modulefiles' @@ -17,16 +16,3 @@ declare -x PMODULES_DEFAULT_GROUPS='Tools Programming' declare -x PMODULES_DEFINED_RELEASES=':unstable:stable:deprecated:' declare -x PMODULES_DEFAULT_RELEASES='stable' -export PMODULES_DISTFILESDIR -export PMODULES_TMPDIR - -#----------------------------------------------------------------------------- -# OS specific configuration -# -case ${OS} in -Darwin ) - declare -x MACOSX_DEPLOYMENT_TARGET='10.12' - #declare -rx SDKROOT='macosx10.9' - ;; -esac - -- GitLab