1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
#! /bin/sh
# Copyright (C) 2002-2021 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 <https://www.gnu.org/licenses/>.
# Make sure that --program-transform works even when multiple files are
# collapsed.
required=cc
. test-init.sh
cat >>configure.ac <<'END'
AC_PROG_CC
AC_OUTPUT
END
cat >Makefile.am <<'EOF'
bin_PROGRAMS = p1 p2
bin_SCRIPTS = s1.sh s2.sh
man_MANS = m1.1 m2.1
test-install: install
test -f inst/bin/p$(EXEEXT)
test -f inst/bin/s.sh
test -f inst/man/man1/m.1
test-install-foo: install
test -f inst/bin/foo$(EXEEXT)
test -f inst/bin/foo
test -f inst/man/man1/foo.1
test ! -f inst/bin/p1$(EXEEXT)
test ! -f inst/bin/p2$(EXEEXT)
test ! -f inst/bin/s1.sh
test ! -f inst/bin/s2.sh
test ! -f inst/man/man/m1.1
test ! -f inst/man/man/m2.1
# The test can fail under a parallel make, so disable.
# No evident way to debug or reliably reproduce.
.NOTPARALLEL:
EOF
cat >p1.c <<'EOF'
int
main ()
{
return 0;
}
EOF
cp p1.c p2.c
: > s1.sh
: > s2.sh
: > m1.1
: > m2.1
$ACLOCAL
$AUTOCONF
$AUTOMAKE
cwd=$(pwd) || fatal_ "getting current working directory"
./configure --program-transform-name='s/[12]//' --prefix "$cwd/inst" \
--mandir "$cwd/inst/man"
$MAKE
$MAKE test-install
$MAKE uninstall
test $(find inst -type f -print | wc -l) -eq 0
# Also squash all file types in question.
# On newer Cygwin versions, that won't work, likely due to overly
# aggressive appending of '.exe' suffix when copying/renaming Windows
# executables. So let's skip this part of the test if we detect the
# faulty heuristic is present. See also:
# <https://lists.gnu.org/archive/html/automake-patches/2010-08/msg00153.html>
# <http://thread.gmane.org/gmane.os.cygwin/119380>
echo Foo > foo
echo Bar > bar.exe
chmod a+x foo bar.exe
cp foo bar && cmp foo bar \
|| skip_ "your Cygwin is too aggressive in tweaking '.exe' suffixes"
./configure --program-transform-name='s/.*/foo/' --prefix "$cwd/inst" \
--mandir "$cwd/inst/man"
$MAKE
$MAKE test-install-foo
$MAKE uninstall
test $(find inst -type f -print | wc -l) -eq 0
:
|