Blame tests/atlocal.in

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