25 строки
677 B
Bash
25 строки
677 B
Bash
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2010 The Trustees of Indiana University.
|
|
# All rights reserved.
|
|
# Copyright (c) 2011-2013 Los Alamos National Security, LLC.
|
|
# All rights reserved.
|
|
#
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# MCA_sstore_central_CONFIG([action-if-found], [action-if-not-found])
|
|
# -----------------------------------------------------------
|
|
AC_DEFUN([MCA_orte_sstore_central_CONFIG],[
|
|
AC_CONFIG_FILES([orte/mca/sstore/central/Makefile])
|
|
|
|
# If we don't want FT, don't compile this component
|
|
AS_IF([test "$opal_want_ft_cr" = "1"],
|
|
[$1],
|
|
[$2])
|
|
])dnl
|