| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 | #! /bin/sh# Copyright (C) 2001-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 installation with substitutions.  This test is based on# 'nobase.sh'.required=cc. test-init.shcat >> configure.ac <<'EOF'AC_PROG_CCAM_PROG_ARAC_PROG_RANLIBif test x"$doit" = x"yes"; then  AC_SUBST([basehdr], [sub/base.h])  AC_SUBST([nobasehdr], [sub/nobase.h])  AC_SUBST([basedata], [sub/base.dat])  AC_SUBST([nobasedata], [sub/nobase.dat])  AC_SUBST([basescript], [sub/base.sh])  AC_SUBST([nobasescript], [sub/nobase.sh])  AC_SUBST([baseprog], ['sub/base$(EXEEXT)'])  AC_SUBST([nobaseprog], ['sub/nobase$(EXEEXT)'])  AC_SUBST([baselib], [sub/libbase.a])  AC_SUBST([nobaselib], [sub/libnobase.a])fiAC_OUTPUTEOFcat > Makefile.am << 'EOF'foodir = $(prefix)/foofooexecdir = $(prefix)/foofoo_HEADERS = @basehdr@nobase_foo_HEADERS = @nobasehdr@EXTRA_HEADERS = sub/base.h sub/nobase.hdist_foo_DATA = @basedata@nobase_dist_foo_DATA = @nobasedata@dist_fooexec_SCRIPTS = @basescript@nobase_dist_fooexec_SCRIPTS = @nobasescript@EXTRA_SCRIPTS = sub/base.sh sub/nobase.shfooexec_PROGRAMS = @baseprog@nobase_fooexec_PROGRAMS = @nobaseprog@EXTRA_PROGRAMS = sub/base sub/nobasesub_base_SOURCES = source.csub_nobase_SOURCES = source.cfooexec_LIBRARIES = @baselib@nobase_fooexec_LIBRARIES = @nobaselib@EXTRA_LIBRARIES = sub/libbase.a sub/libnobase.asub_libbase_a_SOURCES = source.csub_libnobase_a_SOURCES = source.ctest-install-data: install-data	test   -f inst/foo/sub/nobase.h	test ! -f inst/foo/nobase.h	test   -f inst/foo/base.h	test   -f inst/foo/sub/nobase.dat	test ! -f inst/foo/nobase.dat	test   -f inst/foo/base.dat	test ! -f inst/foo/sub/pnobase.sh	test ! -f inst/foo/pbase.sh	test ! -f inst/foo/sub/pnobase$(EXEEXT)	test ! -f inst/foo/pbase$(EXEEXT)	test ! -f inst/foo/sub/libnobase.a	test ! -f inst/foo/libbase.atest-install-exec: install-exec	test   -f inst/foo/sub/pnobase.sh	test ! -f inst/foo/pnobase.sh	test   -f inst/foo/pbase.sh	test   -f inst/foo/sub/pnobase$(EXEEXT)	test ! -f inst/foo/pnobase$(EXEEXT)	test   -f inst/foo/pbase$(EXEEXT)	test   -f inst/foo/sub/libnobase.a	test ! -f inst/foo/libnobase.a	test   -f inst/foo/libbase.atest-install-nothing-data: install-data	test ! -f inst/foo/sub/nobase.h	test ! -f inst/foo/nobase.h	test ! -f inst/foo/base.h	test ! -f inst/foo/sub/nobase.dat	test ! -f inst/foo/nobase.dat	test ! -f inst/foo/base.dat	test ! -f inst/foo/sub/pnobase.sh	test ! -f inst/foo/pbase.sh	test ! -f inst/foo/sub/pnobase$(EXEEXT)	test ! -f inst/foo/pbase$(EXEEXT)	test ! -f inst/foo/sub/libnobase.a	test ! -f inst/foo/libbase.atest-install-nothing-exec: install-exec	test ! -f inst/foo/sub/pnobase.sh	test ! -f inst/foo/pnobase.sh	test ! -f inst/foo/pbase.sh	test ! -f inst/foo/sub/pnobase$(EXEEXT)	test ! -f inst/foo/pnobase$(EXEEXT)	test ! -f inst/foo/pbase$(EXEEXT)	test ! -f inst/foo/sub/libnobase.a	test ! -f inst/foo/libnobase.a	test ! -f inst/foo/libbase.aEOFmkdir sub: > sub/base.h: > sub/nobase.h: > sub/base.dat: > sub/nobase.dat: > sub/base.sh: > sub/nobase.shcat >source.c <<'EOF'intmain (int argc, char *argv[]){  return 0;}EOFcp source.c source2.crm -f install-sh$ACLOCAL$AUTOCONF$AUTOMAKE -a --copy./configure --prefix "$(pwd)/inst" --program-prefix=p doit=yes$MAKE$MAKE test-install-data$MAKE test-install-exec$MAKE uninstall$MAKE cleantest $(find inst/foo -type f -print | wc -l) -eq 0./configure --prefix "$(pwd)/inst" --program-prefix=p doit=no$MAKE$MAKE test-install-nothing-data$MAKE test-install-nothing-exec$MAKE uninstall# Likewise, in a VPATH build.$MAKE distcleanmkdir buildcd build../configure --prefix "$(pwd)/inst" --program-prefix=p doit=yes$MAKE$MAKE test-install-data$MAKE test-install-exec$MAKE uninstalltest $(find inst/foo -type f -print | wc -l) -eq 0../configure --prefix "$(pwd)/inst" --program-prefix=p doit=no$MAKE$MAKE test-install-nothing-data$MAKE test-install-nothing-exec:
 |