| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 | #! /bin/sh# Copyright (C) 1999-2017 Free Software Foundation, Inc.## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program.  If not, see <http://www.gnu.org/licenses/>.# Test to make sure '-c' works.  Report from Andris Pavenis.# See also the much more in-depth test 'add-missing'.. test-init.sh# We'll have to cater to systems like MSYS/MinGW where there are no# true symlinks ('ln -s' behaves like 'cp -p'); see automake bug#10441.echo dummy > fooif ln -s foo bar && test -h bar; then  is_symlink () { test -h "$1"; }  is_not_symlink () { test ! -h "$1"; }else  is_symlink () { return 0; } # Avoid spurious failures.  is_not_symlink () { return 0; }firm -f foo bar# First a simple test, where the auxdir is automatically determined# by automake.: > Makefile.amrm -f install-sh$ACLOCAL$AUTOMAKE -c -als -l # For debugging.test -f install-shis_not_symlink install-sh# Let's do a couple of more elaborated tests, this time with the auxdir# explicitly defined in configure.ac.mkdir subcd subcat > configure.ac <<ENDAC_INIT([$me], [1.0])AC_CONFIG_AUX_DIR([auxdir])AM_INIT_AUTOMAKEAC_PROG_CCAC_CONFIG_FILES([Makefile])AC_OUTPUTENDcat > Makefile.am <<ENDbin_PROGRAMS = fooEND$ACLOCAL# 'automake -a' called without '-c' should create symlinks by default,# even when there is already a non-symlinked required auxiliary file.mkdir auxdirecho FAKE-DEPCOMP > auxdir/depcomp$AUTOMAKE -als -l auxdir # For debugging.test -f auxdir/install-shis_symlink auxdir/install-shtest -f auxdir/depcompis_not_symlink auxdir/depcomptest FAKE-DEPCOMP = "$(cat auxdir/depcomp)"# 'automake -a -c' should not create symlinks, even when there are# already symlinked required auxiliary files.rm -rf auxdirmkdir auxdircd auxdirln -s "$am_scriptdir/missing" "$am_scriptdir/install-sh" .cd ..$AUTOMAKE -a -cls -l auxdir # For debugging.test -f auxdir/install-shis_symlink auxdir/install-shtest -f auxdir/missingis_symlink auxdir/missingtest -f auxdir/depcompis_not_symlink auxdir/depcompdiff "$am_scriptdir"/depcomp auxdir/depcomp:
 |