Blame tests/atlocal.in

Packit 47b4ca
# -*- shell-script -*-
Packit 47b4ca
# @configure_input@
Packit 47b4ca
# Configurable variable values for Autoconf test suite.
Packit 47b4ca
Packit 47b4ca
# Copyright (C) 2000-2001, 2005, 2008-2012 Free Software Foundation,
Packit 47b4ca
# Inc.
Packit 47b4ca
#
Packit 47b4ca
# This program is free software: you can redistribute it and/or modify
Packit 47b4ca
# it under the terms of the GNU General Public License as published by
Packit 47b4ca
# the Free Software Foundation, either version 3 of the License, or
Packit 47b4ca
# (at your option) any later version.
Packit 47b4ca
#
Packit 47b4ca
# This program is distributed in the hope that it will be useful,
Packit 47b4ca
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 47b4ca
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 47b4ca
# GNU General Public License for more details.
Packit 47b4ca
#
Packit 47b4ca
# You should have received a copy of the GNU General Public License
Packit 47b4ca
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
Packit 47b4ca
Packit 47b4ca
PERL='@PERL@'
Packit 47b4ca
GREP='@GREP@'
Packit 47b4ca
EGREP='@EGREP@'
Packit 47b4ca
SED='@SED@'
Packit 47b4ca
Packit 47b4ca
# We need to know if sh -n is ok.
Packit 47b4ca
ac_cv_sh_n_works='@ac_cv_sh_n_works@'
Packit 47b4ca
Packit 47b4ca
# Check whether the underlying system can manage some unusual
Packit 47b4ca
# symbols in file names.
Packit 47b4ca
if test -z '@ac_cv_unsupported_fs_chars@'; then
Packit 47b4ca
  func_sanitize_file_name () { echo "$@"; }
Packit 47b4ca
else
Packit 47b4ca
  func_sanitize_file_name () { echo "$@" | tr -d '@ac_cv_unsupported_fs_chars@'; }
Packit 47b4ca
fi
Packit 47b4ca
Packit 47b4ca
# Can we create directories with trailing whitespace in their names?
Packit 47b4ca
ac_cv_dir_trailing_space='@ac_cv_dir_trailing_space@'
Packit 47b4ca
if test "$ac_cv_dir_trailing_space" = yes; then
Packit 47b4ca
  func_sanitize_dir_name () { echo "$@"; }
Packit 47b4ca
else
Packit 47b4ca
  func_sanitize_dir_name () { echo "$@" | sed 's/  *$//'; }
Packit 47b4ca
fi
Packit 47b4ca
Packit 47b4ca
# AUTOM4TE might be set in the environment.  Override it here so that
Packit 47b4ca
# direct aclocal invocations also use it.
Packit 47b4ca
AUTOM4TE=autom4te
Packit 47b4ca
export AUTOM4TE